1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Cleanup one more missed inventory bug

This commit is contained in:
James Cammarata 2015-09-16 16:52:54 -04:00
parent 5db9e38377
commit e97d448838

View file

@ -605,7 +605,7 @@ class Inventory(object):
# we do this shouldn't be too much of an issue. Still, this should # we do this shouldn't be too much of an issue. Still, this should
# be fixed at some point to allow a "first load" to touch all of the # be fixed at some point to allow a "first load" to touch all of the
# directories, then later runs only touch the new basedir specified # directories, then later runs only touch the new basedir specified
for group in self.groups: for group in self.groups.values():
#group.vars = combine_vars(group.vars, self.get_group_vars(group, new_pb_basedir=True)) #group.vars = combine_vars(group.vars, self.get_group_vars(group, new_pb_basedir=True))
group.vars = combine_vars(group.vars, self.get_group_vars(group)) group.vars = combine_vars(group.vars, self.get_group_vars(group))
# get host vars from host_vars/ files # get host vars from host_vars/ files