mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix pathnames in comments
This commit is contained in:
parent
b70c26dc45
commit
86995d7786
1 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ class VarsModule(object):
|
||||||
|
|
||||||
results = {}
|
results = {}
|
||||||
|
|
||||||
# load vars in playbook_dir/group_vars/name_of_group
|
# load vars in inventory_dir/group_vars/name_of_group
|
||||||
for x in groups:
|
for x in groups:
|
||||||
path = os.path.join(basedir, "group_vars/%s" % x)
|
path = os.path.join(basedir, "group_vars/%s" % x)
|
||||||
if os.path.exists(path):
|
if os.path.exists(path):
|
||||||
|
@ -55,7 +55,7 @@ class VarsModule(object):
|
||||||
else:
|
else:
|
||||||
results.update(data)
|
results.update(data)
|
||||||
|
|
||||||
# load vars in playbook_dir/group_vars/name_of_host
|
# load vars in inventory_dir/hosts_vars/name_of_host
|
||||||
path = os.path.join(basedir, "host_vars/%s" % host.name)
|
path = os.path.join(basedir, "host_vars/%s" % host.name)
|
||||||
if os.path.exists(path):
|
if os.path.exists(path):
|
||||||
data = utils.parse_yaml_from_file(path)
|
data = utils.parse_yaml_from_file(path)
|
||||||
|
|
Loading…
Reference in a new issue