Commit 2796b5ee by Seth Vidal

simple fix for issue 2564

when we encounter a group we've not seen before - we need
to make sure we make it a subgroup of 'all', no matter what
parent 8d99ef71
......@@ -69,7 +69,8 @@ class InventoryParser(object):
if line.find(":vars") != -1 or line.find(":children") != -1:
active_group_name = active_group_name.rsplit(":", 1)[0]
if active_group_name not in self.groups:
self.groups[active_group_name] = Group(name=active_group_name)
new_group = self.groups[active_group_name] = Group(name=active_group_name)
all.add_child_group(new_group)
active_group_name = None
elif active_group_name not in self.groups:
new_group = self.groups[active_group_name] = Group(name=active_group_name)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment