Fixing nxos_mtu (#5014)

pull/18777/head
Gabriele 8 years ago committed by Matt Clay
parent 6934f11e1f
commit 6708874f1c

@ -304,10 +304,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)
@ -336,7 +333,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()
@ -580,6 +577,8 @@ def main():
end_state = get_mtu(interface, module)
else:
end_state = get_system_mtu(module)
if 'configure' in cmds:
cmds.pop(0)
results = {}
results['proposed'] = proposed

Loading…
Cancel
Save