zabbix_host_facts: get list of templates (#50007)

Get list of templates among other items. It is useful because later one can edit this list using zabbix_host module.
This commit is contained in:
mindrb 2019-01-09 12:12:32 +02:00 committed by ansibot
parent 33d888210b
commit 260285a73f

View file

@ -103,7 +103,7 @@ class Host(object):
search_key = 'search'
if exact_match:
search_key = 'filter'
host_list = self._zapi.host.get({'output': 'extend', search_key: {'host': [host_name]}})
host_list = self._zapi.host.get({'output': 'extend', 'selectParentTemplates': ['name'], search_key: {'host': [host_name]}})
if len(host_list) < 1:
self._module.fail_json(msg="Host not found: %s" % host_name)
else:
@ -124,6 +124,7 @@ class Host(object):
host = self._zapi.host.get({
'output': 'extend',
'selectGroups': 'extend',
'selectParentTemplates': ['name'],
'hostids': hostinterface['hostid']
})
host[0]['hostinterfaces'] = hostinterface