diff options
author | Ray Lehtiniemi <rayl@mail.com> | 2014-07-24 09:32:52 -0600 |
---|---|---|
committer | Ray Lehtiniemi <rayl@mail.com> | 2014-07-24 09:33:27 -0600 |
commit | abf49f05202f3c10b3a60c15ae3c0d9bfe1eb65c (patch) | |
tree | 750894ad306288fa63a37faea1f7929b9c4ad698 /manifests | |
parent | 80b23375120bf8f96625181c44d5e180e12ee073 (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>
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/requirements.pp | 1 |
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'], } } |