Commit 3d032b9d by James Martin

Fixes various typos introduced in a9017af2.

Fixes odd encoding problem with wait_for_service.
parent e753b39e
...@@ -124,9 +124,8 @@ def main(): ...@@ -124,9 +124,8 @@ def main():
wait_for_handoffs=dict(default=False, type='int'), wait_for_handoffs=dict(default=False, type='int'),
wait_for_ring=dict(default=False, type='int'), wait_for_ring=dict(default=False, type='int'),
wait_for_service=dict( wait_for_service=dict(
required=False, default=None, choices=['kv']) required=False, default=None, choices=['kv']),
), validate_certs = dict(default='yes', type='bool'))
validate_certs = dict(default='yes', type='bool'),
) )
...@@ -137,6 +136,7 @@ def main(): ...@@ -137,6 +136,7 @@ def main():
wait_for_handoffs = module.params.get('wait_for_handoffs') wait_for_handoffs = module.params.get('wait_for_handoffs')
wait_for_ring = module.params.get('wait_for_ring') wait_for_ring = module.params.get('wait_for_ring')
wait_for_service = module.params.get('wait_for_service') wait_for_service = module.params.get('wait_for_service')
validate_certs = module.params.get('validate_certs')
#make sure riak commands are on the path #make sure riak commands are on the path
...@@ -231,7 +231,7 @@ def main(): ...@@ -231,7 +231,7 @@ def main():
module.fail_json(msg='Timeout waiting for handoffs.') module.fail_json(msg='Timeout waiting for handoffs.')
if wait_for_service: if wait_for_service:
cmd = '%s wait_for_service riak_%s %s' % ( riak_admin_bin, wait_for_service, node_name) cmd = [riak_admin_bin, 'wait_for_service', 'riak_%s' % wait_for_service, node_name ]
rc, out, err = module.run_command(cmd) rc, out, err = module.run_command(cmd)
result['service'] = out result['service'] = out
...@@ -250,5 +250,6 @@ def main(): ...@@ -250,5 +250,6 @@ def main():
# import module snippets # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
from ansible.module_utils.urls import *
main() main()
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