Fixing nxos_udld_interface (#5030)

reviewable/pr18780/r1
Gabriele 8 years ago committed by Peter Sprygada
parent c7e711bd35
commit 0d985071e1

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

Loading…
Cancel
Save