summaryrefslogtreecommitdiff
path: root/manifests/pip.pp
diff options
context:
space:
mode:
authorJarl Stefansson <jarl@sdelements.com>2013-11-07 18:05:06 -0500
committerJarl Stefansson <jarl@sdelements.com>2013-11-07 18:05:06 -0500
commit99a7bbbf8a0d4db3a2abba9f4a47ac65c223bbaa (patch)
tree565b770f8812325f3d27630a0212b35bb7f8d925 /manifests/pip.pp
parenta1fc8ab73c6c34413e2957bea1d3a6719e4612c4 (diff)
Fix paths
Diffstat (limited to 'manifests/pip.pp')
-rw-r--r--manifests/pip.pp4
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"],
}
}
}