diff options
author | Sergey Stankevich <stankevich@users.noreply.github.com> | 2013-09-05 11:02:25 -0700 |
---|---|---|
committer | Sergey Stankevich <stankevich@users.noreply.github.com> | 2013-09-05 11:02:25 -0700 |
commit | 25ca628e7de500da470df52c9c7250f5ba79975f (patch) | |
tree | 088859fa2c9d10c2d3b912331ce008bfa5dfb2f9 /manifests | |
parent | f508b71d534f3c67db12886fa914cb4ef74bbe7a (diff) | |
parent | 12d5427d2856f773427ec17b70cea687afd9c8b1 (diff) |
Merge pull request #29 from VerosK/master
Fix: Added missing -p switch
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/virtualenv.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/virtualenv.pp b/manifests/virtualenv.pp index 039d085..cefffcc 100644 --- a/manifests/virtualenv.pp +++ b/manifests/virtualenv.pp @@ -99,7 +99,7 @@ define python::virtualenv ( } exec { "python_virtualenv_${venv_dir}": - command => "mkdir -p ${venv_dir} ${proxy_command} && virtualenv ${system_pkgs_flag} ${venv_dir} && ${venv_dir}/bin/pip --log-file ${venv_dir}/pip.log install ${pypi_index} ${proxy_flag} --upgrade pip ${distribute_pkg}", + command => "mkdir -p ${venv_dir} ${proxy_command} && virtualenv ${system_pkgs_flag} -p ${python} ${venv_dir} && ${venv_dir}/bin/pip --log-file ${venv_dir}/pip.log install ${pypi_index} ${proxy_flag} --upgrade pip ${distribute_pkg}", user => $owner, creates => "${venv_dir}/bin/activate", path => [ '/bin', '/usr/bin', '/usr/sbin' ], |