mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-04 09:43:15 +00:00
Merge pull request #3993 from stoned/inventory-script-all-group-fix
Avoid duplicates of the 'all' group when using inventory script.
This commit is contained in:
@@ -72,7 +72,10 @@ class InventoryScript(object):
|
||||
self.host_vars_from_top = data['hostvars']
|
||||
continue
|
||||
|
||||
group = groups[group_name] = Group(group_name)
|
||||
if group_name != all.name:
|
||||
group = groups[group_name] = Group(group_name)
|
||||
else:
|
||||
group = all
|
||||
host = None
|
||||
|
||||
if not isinstance(data, dict):
|
||||
|
||||
Reference in New Issue
Block a user