mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-02 14:40:19 -07:00
Search multiple paths for modules.
Minimal change to allow a list of paths (separated by the typical path separator) to be searched in sequence for the named module.
This commit is contained in:
parent
e8e6c98016
commit
c1b38f62c8
2 changed files with 9 additions and 4 deletions
|
@ -722,9 +722,14 @@ class Runner(object):
|
|||
|
||||
if module.startswith("/"):
|
||||
raise errors.AnsibleFileNotFound("%s is not a module" % module)
|
||||
in_path = os.path.expanduser(os.path.join(self.module_path, module))
|
||||
if not os.path.exists(in_path):
|
||||
raise errors.AnsibleFileNotFound("module not found: %s" % in_path)
|
||||
|
||||
# Search module path(s) for named module.
|
||||
for module_path in self.module_path.split(os.pathsep):
|
||||
in_path = os.path.expanduser(os.path.join(module_path, module))
|
||||
if os.path.exists(in_path):
|
||||
break
|
||||
else:
|
||||
raise errors.AnsibleFileNotFound("module %s not found in %s" % (module, self.module_path))
|
||||
|
||||
out_path = tmp + module
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue