mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-06 10:43:14 +00:00
Merge pull request #518 from brainpage/devel
adds 'groups' variable, essentially making hosts file accessible as a var
This commit is contained in:
@@ -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 = {}
|
||||
|
||||
Reference in New Issue
Block a user