inventory group: add groups to parent_groups only once

This commit is contained in:
Serge van Ginderachter 2014-03-05 16:37:33 +01:00
parent 36f55d3549
commit 1c86909875

View file

@ -41,7 +41,12 @@ class Group(object):
if not group in self.child_groups:
self.child_groups.append(group)
group.depth = max([self.depth+1, group.depth])
group.parent_groups.append(self)
# now add self to child's parent_groups list, but only if there
# isn't already a group with the same name
if not self.name in [g.name for g in group.parent_groups]:
group.parent_groups.append(self)
self.clear_hosts_cache()
def add_host(self, host):