diff options
author | Jarl Stefansson <jarl@sdelements.com> | 2013-11-07 19:03:13 -0500 |
---|---|---|
committer | Jarl Stefansson <jarl@sdelements.com> | 2013-11-07 19:03:13 -0500 |
commit | 2a6f96857f44c5781733be314b92c0053ba0e9a6 (patch) | |
tree | 121ecfffce6bd88d32aeb910d568fcf1be39cb34 /manifests | |
parent | 2e3784ba2c93f8240648682ce0b3c14bcb8605a7 (diff) |
Change --log-file to --log for backw. pip compat
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/requirements.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/requirements.pp b/manifests/requirements.pp index 67906fc..af84707 100644 --- a/manifests/requirements.pp +++ b/manifests/requirements.pp @@ -79,7 +79,7 @@ define python::requirements ( exec { "python_requirements${name}": provider => shell, - command => "${pip_env} --log-file ${cwd}/pip.log install ${proxy_flag} -r ${requirements}", + command => "${pip_env} --log ${cwd}/pip.log install ${proxy_flag} -r ${requirements}", refreshonly => true, timeout => 1800, user => $owner, |