diff options
author | woldan <vvoldan@gmail.com> | 2013-04-15 23:17:45 +0200 |
---|---|---|
committer | woldan <vvoldan@gmail.com> | 2013-04-15 23:17:45 +0200 |
commit | 7182643bfea6dfa379dbd779b95bfad9aac3f783 (patch) | |
tree | 23a6744096b68e38bb25f8365ce9c8684b368481 | |
parent | b1aa3198c8d950b0e0f1254ffc28438a49540297 (diff) |
Added `path` to ensure `mkdir` and `virtualenv` are found.
-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 { |