summaryrefslogtreecommitdiff
path: root/manifests/requirements.pp
diff options
context:
space:
mode:
authorSergey Stankevich <stankevich@users.noreply.github.com>2013-12-18 03:19:29 -0800
committerSergey Stankevich <stankevich@users.noreply.github.com>2013-12-18 03:19:29 -0800
commit9c60f2fcda9f361a85f4d8d0c5086d0dbc7a03e0 (patch)
treea006079539a58c4210be904cf92013e55164fcc8 /manifests/requirements.pp
parent44ea60543b37ce5ddb9ff9b7411dbf7a0330f0e6 (diff)
parent607b527a11657ddd24545ebc33f0c0984d4c0093 (diff)
Merge pull request #43 from jalli/master
Add support for older pip/virtualenv versions, including facter facts for versions
Diffstat (limited to 'manifests/requirements.pp')
-rw-r--r--manifests/requirements.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/requirements.pp b/manifests/requirements.pp
index 60c5b6c..ee44fa4 100644
--- a/manifests/requirements.pp
+++ b/manifests/requirements.pp
@@ -90,7 +90,7 @@ define python::requirements (
exec { "python_requirements${name}":
provider => shell,
- command => "${pip_env} --log-file ${cwd}/pip.log install ${proxy_flag} ${src_flag} -r ${requirements}",
+ command => "${pip_env} --log ${cwd}/pip.log install ${proxy_flag} ${src_flag} -r ${requirements}",
refreshonly => true,
timeout => 1800,
user => $owner,