corrected choices which was meant to be type
This commit is contained in:
parent
e5362cc76a
commit
875a055103
1 changed files with 1 additions and 1 deletions
|
@ -377,7 +377,7 @@ def main():
|
||||||
state=dict(default="present", choices=['present', 'absent']),
|
state=dict(default="present", choices=['present', 'absent']),
|
||||||
timeout=dict(type='int', default=10),
|
timeout=dict(type='int', default=10),
|
||||||
interfaces=dict(required=False),
|
interfaces=dict(required=False),
|
||||||
force=dict(default='yes', choices='bool'),
|
force=dict(default=True, type='bool'),
|
||||||
proxy=dict(required=False)
|
proxy=dict(required=False)
|
||||||
),
|
),
|
||||||
supports_check_mode=True
|
supports_check_mode=True
|
||||||
|
|
Loading…
Reference in a new issue