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:
parent
b574c70006
commit
dcca08b27b
1 changed files with 1 additions and 2 deletions
|
@ -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("$"):
|
||||
|
|
Loading…
Reference in a new issue