diff options
author | Jarl Stefansson <jarl@sdelements.com> | 2013-11-07 18:05:06 -0500 |
---|---|---|
committer | Jarl Stefansson <jarl@sdelements.com> | 2013-11-07 18:05:06 -0500 |
commit | 99a7bbbf8a0d4db3a2abba9f4a47ac65c223bbaa (patch) | |
tree | 565b770f8812325f3d27630a0212b35bb7f8d925 | |
parent | a1fc8ab73c6c34413e2957bea1d3a6719e4612c4 (diff) |
Fix paths
-rw-r--r-- | manifests/pip.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/pip.pp b/manifests/pip.pp index f64ea97..9589b1a 100644 --- a/manifests/pip.pp +++ b/manifests/pip.pp @@ -84,7 +84,7 @@ define python::pip ( unless => "$pip_env freeze | grep -i -e ${grep_regex}", user => $owner, environment => $environment, - path => [ '/bin', '/usr/bin', '/usr/local/bin/' ], + path => ["/usr/local/bin","/usr/bin","/bin", "/usr/sbin"], } } @@ -94,7 +94,7 @@ define python::pip ( onlyif => "$pip_env freeze | grep -i -e ${grep_regex}", user => $owner, environment => $environment, - path => [ '/bin', '/usr/bin', '/usr/local/bin/' ], + path => ["/usr/local/bin","/usr/bin","/bin", "/usr/sbin"], } } } |