inject a dictionary of avaiable variables and the environment into the executor, so that templates can be used to debug playbooks by dumping more of the available context.

pull/2455/head
Rob Parrott 12 years ago
parent 2baece3a03
commit 81e2d871aa

@ -337,6 +337,8 @@ class Runner(object):
inject['hostvars'] = HostVars(self.setup_cache, self.inventory)
inject['group_names'] = host_variables.get('group_names', [])
inject['groups'] = self.inventory.groups_list()
inject['vars'] = self.module_vars
inject['environment'] = self.environment
# allow with_foo to work in playbooks...
items = None

Loading…
Cancel
Save