Fix accelerate module parameter for IPv6 activation
This commit is contained in:
parent
4211af0f4a
commit
a1f1f459d8
1 changed files with 2 additions and 2 deletions
|
@ -427,7 +427,7 @@ def main():
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
port=dict(required=False, default=5099),
|
port=dict(required=False, default=5099),
|
||||||
ipv6=dict(required=False, default=False),
|
ipv6=dict(required=False, default=False, type='bool'),
|
||||||
timeout=dict(required=False, default=300),
|
timeout=dict(required=False, default=300),
|
||||||
password=dict(required=True),
|
password=dict(required=True),
|
||||||
minutes=dict(required=False, default=30),
|
minutes=dict(required=False, default=30),
|
||||||
|
@ -441,7 +441,7 @@ def main():
|
||||||
timeout = int(module.params['timeout'])
|
timeout = int(module.params['timeout'])
|
||||||
minutes = int(module.params['minutes'])
|
minutes = int(module.params['minutes'])
|
||||||
debug = int(module.params['debug'])
|
debug = int(module.params['debug'])
|
||||||
ipv6 = bool(module.params['ipv6'])
|
ipv6 = module.params['ipv6']
|
||||||
|
|
||||||
if not HAS_KEYCZAR:
|
if not HAS_KEYCZAR:
|
||||||
module.fail_json(msg="keyczar is not installed (on the remote side)")
|
module.fail_json(msg="keyczar is not installed (on the remote side)")
|
||||||
|
|
Loading…
Reference in a new issue