summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Lehtiniemi <rayl@mail.com>2014-07-24 09:32:52 -0600
committerRay Lehtiniemi <rayl@mail.com>2014-07-24 09:33:27 -0600
commitabf49f05202f3c10b3a60c15ae3c0d9bfe1eb65c (patch)
tree750894ad306288fa63a37faea1f7929b9c4ad698
parent80b23375120bf8f96625181c44d5e180e12ee073 (diff)
Don't override PATH while installing requirements.txt
Setting the path here causes installation failures if some package in requirements.txt needs tools which happen to be installed in a non-system location. Leave path alone so caller can use Exec { path=>[...] } or similar to locate the desired tools. Signed-off-by: Ray Lehtiniemi <rayl@mail.com>
-rw-r--r--manifests/requirements.pp1
1 files changed, 0 insertions, 1 deletions
diff --git a/manifests/requirements.pp b/manifests/requirements.pp
index 2373337..d9b6242 100644
--- a/manifests/requirements.pp
+++ b/manifests/requirements.pp
@@ -107,7 +107,6 @@ define python::requirements (
user => $owner,
subscribe => File[$requirements],
environment => $environment,
- path => ['/usr/local/bin','/usr/bin','/bin', '/usr/sbin'],
}
}