mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-06 10:43:14 +00:00
Merge pull request #14450 from bcoca/include_vars_merge
Include vars merge
This commit is contained in:
@@ -600,8 +600,10 @@ class VariableManager:
|
||||
'''
|
||||
Sets a value in the vars_cache for a host.
|
||||
'''
|
||||
|
||||
host_name = host.get_name()
|
||||
if host_name not in self._vars_cache:
|
||||
self._vars_cache[host_name] = dict()
|
||||
self._vars_cache[host_name][varname] = value
|
||||
if varname in self._vars_cache[host_name]:
|
||||
self._vars_cache[host_name][varname] = combine_vars(self._vars_cache[host_name][varname], value)
|
||||
else:
|
||||
self._vars_cache[host_name][varname] = value
|
||||
|
||||
Reference in New Issue
Block a user