mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Make sure inventory loads files with non-relative paths
This is a slightly different fix than we originally committed, but fixes the problem in a less invasive way (and I believe it's generally better that we don't deal with relative paths internally past this point) Fixes #11789
This commit is contained in:
parent
b9433650d1
commit
26d5a17b59
1 changed files with 2 additions and 2 deletions
|
@ -660,11 +660,11 @@ class Inventory(object):
|
|||
# FIXME: these should go to VariableManager
|
||||
if group and host is None:
|
||||
# load vars in dir/group_vars/name_of_group
|
||||
base_path = os.path.join(basedir, "group_vars/%s" % group.name)
|
||||
base_path = os.path.realpath(os.path.join(basedir, "group_vars/%s" % group.name))
|
||||
results = self._variable_manager.add_group_vars_file(base_path, self._loader)
|
||||
elif host and group is None:
|
||||
# same for hostvars in dir/host_vars/name_of_host
|
||||
base_path = os.path.join(basedir, "host_vars/%s" % host.name)
|
||||
base_path = os.path.realpath(os.path.join(basedir, "host_vars/%s" % host.name))
|
||||
results = self._variable_manager.add_host_vars_file(base_path, self._loader)
|
||||
|
||||
# all done, results is a dictionary of variables for this particular host.
|
||||
|
|
Loading…
Reference in a new issue