fix for loosing ungrouped hosts in ini
fixes #22861
(cherry picked from commit 052be86605
)
This commit is contained in:
parent
4e6cdf8989
commit
2152bd8da2
1 changed files with 4 additions and 2 deletions
|
@ -103,7 +103,6 @@ class InventoryParser(object):
|
|||
self.lineno += 1
|
||||
|
||||
line = line.strip()
|
||||
|
||||
# Skip empty lines and comments
|
||||
if not line or line[0] in self._COMMENT_MARKERS:
|
||||
continue
|
||||
|
@ -156,6 +155,9 @@ class InventoryParser(object):
|
|||
for h in hosts:
|
||||
self.groups[groupname].add_host(h)
|
||||
|
||||
#FIXME: needed to save hosts to group, find out why
|
||||
self.groups[groupname].get_hosts()
|
||||
|
||||
# [groupname:vars] contains variable definitions that must be
|
||||
# applied to the current group.
|
||||
elif state == 'vars':
|
||||
|
@ -202,7 +204,7 @@ class InventoryParser(object):
|
|||
# 'all' at the time it was created.
|
||||
|
||||
for group in self.groups.values():
|
||||
if group.depth == 0 and group.name not in ('all', 'ungrouped'):
|
||||
if group.depth == 0 and group.name != 'all':
|
||||
self.groups['all'].add_child_group(group)
|
||||
|
||||
def _parse_group_name(self, line):
|
||||
|
|
Loading…
Add table
Reference in a new issue