From 875a0551032e721f06625c237bd7c2a6fecaa7fd Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Sun, 15 Nov 2015 14:31:34 -0800 Subject: [PATCH] corrected choices which was meant to be type --- monitoring/zabbix_host.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitoring/zabbix_host.py b/monitoring/zabbix_host.py index 3cb27c5fbb9..5b6748a3e94 100644 --- a/monitoring/zabbix_host.py +++ b/monitoring/zabbix_host.py @@ -377,7 +377,7 @@ def main(): state=dict(default="present", choices=['present', 'absent']), timeout=dict(type='int', default=10), interfaces=dict(required=False), - force=dict(default='yes', choices='bool'), + force=dict(default=True, type='bool'), proxy=dict(required=False) ), supports_check_mode=True