Fixing nxos_portchannel (#5019)
This commit is contained in:
parent
ebb39a0151
commit
5b96fb1dac
1 changed files with 2 additions and 5 deletions
|
@ -343,10 +343,7 @@ def execute_config_command(commands, module):
|
||||||
|
|
||||||
def get_cli_body_ssh(command, response, module):
|
def get_cli_body_ssh(command, response, module):
|
||||||
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)
|
||||||
|
@ -375,7 +372,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, output=command_type)
|
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()
|
||||||
|
|
Loading…
Reference in a new issue