Commit 35a3419b by Michael DeHaan

Merge pull request #4423 from localvoid/firewalld-fix_timeout

Fix timeout bug in firewalld module
parents 987bf9e4 194a7dab
......@@ -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
)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment