mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
properly combine vars if merge is set
hash_behaviour = merge now also applies to include vars
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