diff options
author | Sergey Stankevich <sergey@stankevi.ch> | 2013-04-16 06:08:14 -0700 |
---|---|---|
committer | Sergey Stankevich <sergey@stankevi.ch> | 2013-04-16 06:08:14 -0700 |
commit | a209fb9a0e6bc6100df0ebc3323e1ec8eab80bbc (patch) | |
tree | 23a6744096b68e38bb25f8365ce9c8684b368481 /manifests/virtualenv.pp | |
parent | b1aa3198c8d950b0e0f1254ffc28438a49540297 (diff) | |
parent | 7182643bfea6dfa379dbd779b95bfad9aac3f783 (diff) |
Merge pull request #7 from woldan/master
Add search path to virtualenv setup command.
Diffstat (limited to 'manifests/virtualenv.pp')
-rw-r--r-- | manifests/virtualenv.pp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/manifests/virtualenv.pp b/manifests/virtualenv.pp index ace2a00..b9ab88e 100644 --- a/manifests/virtualenv.pp +++ b/manifests/virtualenv.pp @@ -82,6 +82,7 @@ define python::virtualenv ( && virtualenv -p `which ${python}` ${system_pkgs_flag} ${venv_dir} \ && ${venv_dir}/bin/pip install ${proxy_flag} --upgrade ${distribute_pkg} pip", creates => $venv_dir, + path => [ '/bin', '/usr/bin', '/usr/sbin' ], } if $requirements { |