adds 'groups' variable, essentially making hosts file accessible as a variable

pull/603/head
Jonathan Palley 12 years ago
parent 3d7a51f2ec
commit cedbcfcc0a

@ -290,6 +290,12 @@ class Runner(object):
inject.update(host_variables)
inject.update(self.module_vars)
group_hosts = {}
for g in self.inventory.groups:
group_hosts[g.name] = map((lambda x: x.get_variables()),g.hosts)
inject['groups'] = group_hosts
if self.module_name == 'setup':
if not args:
args = {}

Loading…
Cancel
Save