mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
kept vars as alias to hostvars[inventory_hostname] and avoid subtrees into themselves
This commit is contained in:
parent
3ccfebc9f7
commit
af06a97f17
1 changed files with 2 additions and 5 deletions
|
@ -294,11 +294,8 @@ class VariableManager:
|
|||
|
||||
all_vars['ansible_version'] = CLI.version_info(gitinfo=False)
|
||||
|
||||
# make vars self referential, so people can do things like 'vars[var_name]'
|
||||
copied_vars = all_vars.copy()
|
||||
if 'hostvars' in copied_vars:
|
||||
del copied_vars['hostvars']
|
||||
all_vars['vars'] = copied_vars
|
||||
if 'hostvars' in all_vars and host:
|
||||
all_vars['vars'] = all_vars['hostvars'][host.get_name()]
|
||||
|
||||
#CACHED_VARS[cache_entry] = all_vars
|
||||
|
||||
|
|
Loading…
Reference in a new issue