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 ...
pull/2872/merge
Michael DeHaan 11 years ago
commit 344a30938c

@ -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…
Cancel
Save