Fixing groups variable structure to match v1

Fixes #12418
pull/4420/head
James Cammarata 2015-09-17 10:24:03 -04:00
parent 24388421c2
commit 8acbc00853
1 changed files with 4 additions and 1 deletions

View File

@ -264,7 +264,10 @@ class VariableManager:
all_vars['group_names'] = [group.name for group in host.get_groups()]
if self._inventory is not None:
all_vars['groups'] = self._inventory.groups.keys()
all_vars['groups'] = dict()
for (group_name, group) in self._inventory.groups.iteritems():
all_vars['groups'][group_name] = [h.name for h in group.get_hosts()]
if include_hostvars:
hostvars = HostVars(vars_manager=self, play=play, inventory=self._inventory, loader=loader)
all_vars['hostvars'] = hostvars