mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00: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:
committed by
Peter Sprygada
parent
9001a8794f
commit
862c439223
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user