From 507986703c8e8ae7eace0470f01b31c4504060e5 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 --- lib/ansible/modules/extras/monitoring/zabbix_host.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/extras/monitoring/zabbix_host.py b/lib/ansible/modules/extras/monitoring/zabbix_host.py index 717baa6232e..5edf5f04d33 100644 --- a/lib/ansible/modules/extras/monitoring/zabbix_host.py +++ b/lib/ansible/modules/extras/monitoring/zabbix_host.py @@ -374,7 +374,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