mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
[Issue #1075] Fixing setup module fails if PATH is not set on target host
This commit is contained in:
parent
b8c4bb9e6e
commit
78b7a3a115
1 changed files with 1 additions and 1 deletions
|
@ -239,7 +239,7 @@ class AnsibleModule(object):
|
|||
for d in opt_dirs:
|
||||
if d is not None and os.path.exists(d):
|
||||
paths.append(d)
|
||||
paths += os.environ.get('PATH').split(':')
|
||||
paths += os.environ.get('PATH', '').split(':')
|
||||
bin_path = None
|
||||
# mangle PATH to include /sbin dirs
|
||||
for p in sbin_paths:
|
||||
|
|
Loading…
Reference in a new issue