corrected choices which was meant to be type
This commit is contained in:
parent
df517b5f03
commit
507986703c
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue