1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fixing nxos_ntp_options (#5017)

This commit is contained in:
Gabriele 2016-09-30 16:21:20 -04:00 committed by Matt Clay
parent 4b6ee73f8c
commit c50324fb08

View file

@ -288,10 +288,7 @@ def get_cli_body_ssh(command, response, module):
body = response
else:
try:
if isinstance(response[0], str):
body = [json.loads(response[0])]
else:
body = response
body = [json.loads(response[0])]
except ValueError:
module.fail_json(msg='Command does not support JSON output',
command=command)
@ -320,7 +317,7 @@ def execute_show(cmds, module, command_type=None):
module.cli.add_commands(cmds, output=command_type)
response = module.cli.run_commands()
else:
module.cli.add_commands(cmds)
module.cli.add_commands(cmds, raw=True)
response = module.cli.run_commands()
except ShellError:
clie = get_exception()
@ -500,6 +497,8 @@ def main():
changed = True
execute_config_command(cmds, module)
end_state = get_ntp_options(module)
if 'configure' in cmds:
cmds.pop(0)
results = {}
results['proposed'] = proposed