diff options
author | Sergey Stankevich <sergey@stankevi.ch> | 2013-05-28 10:48:25 -0700 |
---|---|---|
committer | Sergey Stankevich <sergey@stankevi.ch> | 2013-05-28 10:48:25 -0700 |
commit | 598856b57ebd01ef562cd05f27e33f7ff3434b09 (patch) | |
tree | 30357915c7ee6f0df8ba233bd2802b26e8634434 /manifests | |
parent | 960acbe73e229076d15ecc8795fce9bd37880c19 (diff) | |
parent | 5d3b340ac6ebbee8cca959c2653f141e3030f646 (diff) |
Merge pull request #16 from schacki/5d3b340ac6ebbee8cca959c2653f141e3030f646
Removed Multiline backslashed from virtuelv Exec statement
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/virtualenv.pp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/manifests/virtualenv.pp b/manifests/virtualenv.pp index 9f9e96c..fc0f45b 100644 --- a/manifests/virtualenv.pp +++ b/manifests/virtualenv.pp @@ -86,10 +86,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 install ${pypi_index} ${proxy_flag} --upgrade ${distribute_pkg} pip", + command => "mkdir -p ${venv_dir} ${proxy_command} && virtualenv -p `which ${python}` ${system_pkgs_flag} ${venv_dir} && ${venv_dir}/bin/pip install ${pypi_index} ${proxy_flag} --upgrade ${distribute_pkg} pip", user => $owner, creates => $venv_dir, path => [ '/bin', '/usr/bin', '/usr/sbin' ], |