mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 12:21:26 -07:00
YAML inventory unit test: fix test inventory format (#33828)
* Fix YAML inventory unit test * YAML inventory unit test: add checks * YAML: add hosts without any group to ungrouped
This commit is contained in:
parent
7c187cae93
commit
dfb2f346d8
2 changed files with 14 additions and 3 deletions
|
@ -140,6 +140,9 @@ class InventoryModule(BaseFileInventoryPlugin):
|
|||
for host_pattern in group_data['hosts']:
|
||||
hosts, port = self._parse_host(host_pattern)
|
||||
self._populate_host_vars(hosts, group_data['hosts'][host_pattern] or {}, group, port)
|
||||
if group == 'all':
|
||||
for host in hosts:
|
||||
self.inventory.add_host(host, group='ungrouped', port=port)
|
||||
else:
|
||||
self.display.warning('Skipping unexpected key (%s) in group (%s), only "vars", "children" and "hosts" are valid' % (key, group))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue