mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
* *FIX: re-create the exattrs dict into the hostvars[name] dict * *FIX: remove unwanted files * Fixes #35409: put an str instead of variable
This commit is contained in:
parent
9001a8794f
commit
862c439223
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ def main():
|
|||
if key.startswith('ansible_'):
|
||||
hostvars[name][key] = value
|
||||
else:
|
||||
if 'extattrs' not in hostvars:
|
||||
if 'extattrs' not in hostvars[name]:
|
||||
hostvars[name]['extattrs'] = {}
|
||||
hostvars[name]['extattrs'][key] = value
|
||||
|
||||
|
|
Loading…
Reference in a new issue