mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixing nxos_ntp_auth (#5016)
This commit is contained in:
parent
c50324fb08
commit
6201a57d83
1 changed files with 4 additions and 5 deletions
|
@ -308,10 +308,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)
|
||||||
|
@ -340,7 +337,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()
|
||||||
|
@ -555,6 +552,8 @@ def main():
|
||||||
delta = dict(set(end_state.iteritems()).difference(existing.iteritems()))
|
delta = dict(set(end_state.iteritems()).difference(existing.iteritems()))
|
||||||
if delta or (len(existing) != len(end_state)):
|
if delta or (len(existing) != len(end_state)):
|
||||||
changed = True
|
changed = True
|
||||||
|
if 'configure' in cmds:
|
||||||
|
cmds.pop(0)
|
||||||
|
|
||||||
results = {}
|
results = {}
|
||||||
results['proposed'] = proposed
|
results['proposed'] = proposed
|
||||||
|
|
Loading…
Add table
Reference in a new issue