Excluded qemu templates in pools (#1991)

* Excluded qemu templates in pools

* Added changelog fragment

* Made check more robust
This commit is contained in:
Jeffrey van Pelt 2021-03-12 08:00:03 +01:00 committed by GitHub
parent d0bb74a03b
commit 178209be27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

@ -349,7 +349,8 @@ class InventoryModule(BaseInventoryPlugin, Cacheable):
for member in self._get_members_per_pool(pool['poolid']):
if member.get('name'):
self.inventory.add_child(pool_group, member['name'])
if not member.get('template'):
self.inventory.add_child(pool_group, member['name'])
def parse(self, inventory, loader, path, cache=True):
if not HAS_REQUESTS: