summaryrefslogtreecommitdiff
path: root/manifests/virtualenv.pp
diff options
context:
space:
mode:
authorVik Bhatti <vik@vikbhatti.com>2014-04-08 13:45:33 +0100
committerVik Bhatti <vik@vikbhatti.com>2014-04-08 13:45:33 +0100
commit9c1bc0825f3ebbe8473d3691bdc8c18f31fae12b (patch)
treea7cd92c401d9c336e27651b66fdd9d920d4c2eaa /manifests/virtualenv.pp
parent750d3538929316df9e18481a01acc0c7dc4de2dd (diff)
Fixed various linting issues
Diffstat (limited to 'manifests/virtualenv.pp')
-rw-r--r--manifests/virtualenv.pp10
1 files changed, 5 insertions, 5 deletions
diff --git a/manifests/virtualenv.pp b/manifests/virtualenv.pp
index d18fbdf..ebc75be 100644
--- a/manifests/virtualenv.pp
+++ b/manifests/virtualenv.pp
@@ -105,11 +105,11 @@ define python::virtualenv (
}
exec { "python_virtualenv_${venv_dir}":
- 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,
- cwd => "/tmp",
+ 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,
+ cwd => '/tmp',
environment => $environment,
}