Merge pull request #2944 from stoned/fix-2916

Fix for issue #2916 : for each host promote the host variables as global...
This commit is contained in:
Michael DeHaan 2013-05-16 14:10:31 -07:00
commit 2684066aa1

View file

@ -55,9 +55,12 @@ class ActionModule(object):
groups = {}
for host in self.runner.host_set:
if not check_conditional(template.template(self.runner.basedir, self.runner.conditional, inject)):
data = {}
data.update(inject)
data.update(inject['hostvars'][host])
if not check_conditional(template.template(self.runner.basedir, self.runner.conditional, data)):
continue
group_name = template.template(self.runner.basedir, args['key'], inject)
group_name = template.template(self.runner.basedir, args['key'], data)
group_name = group_name.replace(' ','-')
if group_name not in groups:
groups[group_name] = []