From 8f8d5b41d7b05bce29bbe41a6505525be06aa296 Mon Sep 17 00:00:00 2001 From: Eike Frost Date: Fri, 20 Oct 2017 15:53:58 +0200 Subject: [PATCH] Fix description parameter to check_all_properties (which was mangled in an earlier update) (#31987) --- lib/ansible/modules/monitoring/zabbix_host.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/monitoring/zabbix_host.py b/lib/ansible/modules/monitoring/zabbix_host.py index 067109d27e..6ecfc21b95 100644 --- a/lib/ansible/modules/monitoring/zabbix_host.py +++ b/lib/ansible/modules/monitoring/zabbix_host.py @@ -686,7 +686,7 @@ def main(): module.exit_json(changed=False) else: if host.check_all_properties(host_id, host_groups, status, interfaces, template_ids, - exist_interfaces_copy, zabbix_host_obj, proxy_id, visible_name, host_name): + exist_interfaces_copy, zabbix_host_obj, proxy_id, visible_name, description, host_name): host.update_host(host_name, group_ids, status, host_id, interfaces, exist_interfaces, proxy_id, visible_name, description, tls_connect, tls_accept, tls_psk_identity, tls_psk, tls_issuer, tls_subject)