summaryrefslogtreecommitdiff
path: root/manifests/virtualenv.pp
diff options
context:
space:
mode:
authorFotis Gimian <fgimiansoftware@gmail.com>2013-06-04 11:25:48 +1000
committerFotis Gimian <fgimiansoftware@gmail.com>2013-06-04 11:25:48 +1000
commit8608958fe1bb7fec4bb75c65bd6b1f1e236e88bd (patch)
treedaf75da3ed8ee4bf7de16d007ef5de9b766817f8 /manifests/virtualenv.pp
parent17debdc04506a2bfd4297b7620acffdbd01c9176 (diff)
Removed unnecessary which commands for obtaining the pip and python executables
Diffstat (limited to 'manifests/virtualenv.pp')
-rw-r--r--manifests/virtualenv.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/virtualenv.pp b/manifests/virtualenv.pp
index f45678b..7fbf25e 100644
--- a/manifests/virtualenv.pp
+++ b/manifests/virtualenv.pp
@@ -95,7 +95,7 @@ define python::virtualenv (
}
exec { "python_virtualenv_${venv_dir}":
- command => "mkdir -p ${venv_dir} ${proxy_command} && virtualenv -p `which ${python}` ${system_pkgs_flag} ${venv_dir} && ${venv_dir}/bin/pip --log-file ${venv_dir}/pip.log install ${pypi_index} ${proxy_flag} --upgrade ${distribute_pkg} pip",
+ 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 ${distribute_pkg} pip",
user => $owner,
creates => "${venv_dir}/bin/activate",
path => [ '/bin', '/usr/bin', '/usr/sbin' ],