diff --git a/lib/ansible/plugins/inventory/ini.py b/lib/ansible/plugins/inventory/ini.py index 578f899b86..a3374a8408 100644 --- a/lib/ansible/plugins/inventory/ini.py +++ b/lib/ansible/plugins/inventory/ini.py @@ -193,9 +193,7 @@ class InventoryModule(BaseFileInventoryPlugin): if groupname in pending_declarations and state != 'vars': if pending_declarations[groupname]['state'] == 'children': - for parent in pending_declarations[groupname]['parents']: - self.inventory.add_child(parent, groupname) - del pending_declarations[groupname] + self._add_pending_children(groupname, pending_declarations) continue elif line.startswith('[') and line.endswith(']'): @@ -248,6 +246,13 @@ class InventoryModule(BaseFileInventoryPlugin): elif decl['state'] == 'children': raise AnsibleError("%s:%d: Section [%s:children] includes undefined group: %s" % (path, decl['line'], decl['parents'].pop(), decl['name'])) + def _add_pending_children(self, group, pending): + for parent in pending[group]['parents']: + self.inventory.add_child(parent, group) + if parent in pending and pending[parent]['state'] == 'children': + self._add_pending_children(parent, pending) + del pending[group] + def _parse_group_name(self, line): ''' Takes a single line and tries to parse it as a group name. Returns the