Merge pull request #2871 from tima/inv-host-entry-fix
Fixed bug where a host entry in the inventory represented as a dict w/o ...
This commit is contained in:
commit
344a30938c
1 changed files with 2 additions and 0 deletions
|
@ -63,6 +63,8 @@ class InventoryScript(object):
|
|||
|
||||
if not isinstance(data, dict):
|
||||
data = {'hosts': data}
|
||||
elif not any(k in data for k in ('hosts','vars')):
|
||||
data = {'hosts': [group_name], 'vars': data}
|
||||
|
||||
if 'hosts' in data:
|
||||
|
||||
|
|
Loading…
Reference in a new issue