Contrib infoblox exattrs Fixes #35409 (#35410)

* *FIX: re-create the exattrs dict into the hostvars[name] dict

* *FIX: remove unwanted files

* Fixes #35409: put an str instead of variable
pull/35564/head
Clement Trebuchet 8 years ago 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

Loading…
Cancel
Save