From 73d66e28ab4f3ba1ffdb84c99502fcb3db9c4877 Mon Sep 17 00:00:00 2001 From: Gabriele Date: Fri, 30 Sep 2016 16:19:54 -0400 Subject: [PATCH] Fixing nxos_snmp_host (#5024) --- lib/ansible/modules/network/nxos/nxos_snmp_host.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/ansible/modules/network/nxos/nxos_snmp_host.py b/lib/ansible/modules/network/nxos/nxos_snmp_host.py index d3b431de8ce..f00c7557709 100644 --- a/lib/ansible/modules/network/nxos/nxos_snmp_host.py +++ b/lib/ansible/modules/network/nxos/nxos_snmp_host.py @@ -311,10 +311,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) @@ -343,7 +340,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() @@ -616,6 +613,8 @@ def main(): changed = True execute_config_command(cmds, module) end_state = get_snmp_host(snmp_host, module) + if 'configure' in cmds: + cmds.pop(0) if store: existing['vrf_filter'] = store