diff options
author | Brian Coca <brian.coca+git@gmail.com> | 2015-11-15 14:31:34 -0800 |
---|---|---|
committer | Brian Coca <brian.coca+git@gmail.com> | 2015-11-15 14:31:34 -0800 |
commit | 875a0551032e721f06625c237bd7c2a6fecaa7fd (patch) | |
tree | efd37e4a34278da4277dd6c0c8a40f8ea855abc3 /monitoring | |
parent | e5362cc76a25a734ddacf4d8ac496d9127c4a46d (diff) | |
download | ansible-modules-extras-875a0551032e721f06625c237bd7c2a6fecaa7fd.tar.gz |
corrected choices which was meant to be type
Diffstat (limited to 'monitoring')
-rw-r--r-- | monitoring/zabbix_host.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/monitoring/zabbix_host.py b/monitoring/zabbix_host.py index 3cb27c5f..5b6748a3 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 |