Fixing nxos_snmp_community (#5022)
This commit is contained in:
parent
f74275fc1d
commit
cda65cad18
1 changed files with 4 additions and 5 deletions
|
@ -283,10 +283,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)
|
||||
|
@ -315,7 +312,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()
|
||||
|
@ -485,6 +482,8 @@ def main():
|
|||
changed = True
|
||||
execute_config_command(cmds, module)
|
||||
end_state = get_snmp_community(module, community)
|
||||
if 'configure' in cmds:
|
||||
cmds.pop(0)
|
||||
|
||||
results = {}
|
||||
results['proposed'] = proposed
|
||||
|
|
Loading…
Reference in a new issue