Avoid duplicates of the 'all' group when using inventory script.

Do not recreate an 'all' group when it is in the inventory script's
output, but use the one created upfront.
pull/3993/head
Stoned Elipot 11 years ago
parent 266d2008d8
commit 6cbd94dfae

@ -72,7 +72,10 @@ class InventoryScript(object):
self.host_vars_from_top = data['hostvars'] self.host_vars_from_top = data['hostvars']
continue continue
group = groups[group_name] = Group(group_name) if group_name != all.name:
group = groups[group_name] = Group(group_name)
else:
group = all
host = None host = None
if not isinstance(data, dict): if not isinstance(data, dict):

Loading…
Cancel
Save