summaryrefslogtreecommitdiff
path: root/manifests/virtualenv.pp
diff options
context:
space:
mode:
authorFrank Chiang <fchiang@apperian.com>2013-09-09 22:20:15 -0400
committerFrank Chiang <fchiang@apperian.com>2013-09-09 22:20:15 -0400
commit36da0821ef0b190d501b438cd0ac2daa0a4005ad (patch)
tree311faa576032ee5b5d460c1b1598b194bcbcab8d /manifests/virtualenv.pp
parent98a51c5885a2f8e27ee41d56e6a8c64de4c9848c (diff)
parent25ca628e7de500da470df52c9c7250f5ba79975f (diff)
Merge remote-tracking branch 'upstream/master'
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 26f50ed..bdcfc6f 100644
--- a/manifests/virtualenv.pp
+++ b/manifests/virtualenv.pp
@@ -103,7 +103,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 => $path,