Commit 9d5a79f5 by Timothy Appnel

Made groups.groupname and group_names variables accessible in playbooks.

Also modified code that feeds the groups data structure to templates so
that it resolves groups inside of groups to hostnames.
parent 20fc6a29
......@@ -319,11 +319,7 @@ class Runner(object):
# 'hostvars' variable contains variables for each host name
# ... and is set elsewhere
# 'inventory_hostname' is also set elsewhere
group_hosts = {}
for g in self.inventory.groups:
group_hosts[g.name] = [ h.name for h in g.hosts ]
inject['groups'] = group_hosts
inject['groups'] = self.inventory.groups_list()
# allow module args to work as a dictionary
# though it is usually a string
new_args = ""
......
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