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

inventory directory parser: add host to group only once

This commit is contained in:
Serge van Ginderachter 2014-03-05 16:26:26 +01:00
parent 8b215149d4
commit 36f55d3549

View file

@ -79,7 +79,10 @@ class InventoryDirectory(object):
# note: depth numbers on duplicates may be bogus
for k, v in host.vars.iteritems():
self.hosts[host.name].set_variable(k, v)
self.groups[name].add_host(self.hosts[host.name])
# host can already exist from other source (same name,
# different object):
if host.name not in [h.name for h in self.groups[name].hosts]:
self.groups[name].add_host(self.hosts[host.name])
# This needs to be a second loop to ensure all the parent groups exist
for name, group in parser.groups.iteritems():