1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Don't let with_items erase 'hostvars'

This commit is contained in:
Michael DeHaan 2012-07-20 10:02:35 -04:00
parent b574c70006
commit dcca08b27b

View file

@ -528,10 +528,9 @@ class Runner(object):
host_variables = self.inventory.get_variables(host)
port = host_variables.get('ansible_ssh_port', self.remote_port)
inject = self.setup_cache[host].copy()
inject['hostvars'] = self.setup_cache
inject.update(host_variables)
inject.update(self.module_vars)
inject['hostvars'] = self.setup_cache
items = self.module_vars.get('items', [])
if isinstance(items, basestring) and items.startswith("$"):