Fix timeout bug in firewalld module
This commit is contained in:
parent
fad56730e8
commit
3e85f39ba7
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ def main():
|
|||
zone=dict(required=False,default=None),
|
||||
permanent=dict(type='bool',required=True),
|
||||
state=dict(choices=['enabled', 'disabled'], required=True),
|
||||
timeout=dict(required=False,default=0),
|
||||
timeout=dict(type='int',required=False,default=0),
|
||||
),
|
||||
supports_check_mode=True
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue