mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-02 16:53:11 +00:00
Fixing nxos_vrrp (#5035)
This commit is contained in:
@@ -332,7 +332,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, output=command_type)
|
||||
module.cli.add_commands(cmds, raw=True)
|
||||
response = module.cli.run_commands()
|
||||
except ShellError:
|
||||
clie = get_exception()
|
||||
@@ -628,6 +628,8 @@ def main():
|
||||
execute_config_command(cmds, module)
|
||||
changed = True
|
||||
end_state = get_existing_vrrp(interface, group, module, name)
|
||||
if 'configure' in cmds:
|
||||
cmds.pop(0)
|
||||
|
||||
results = {}
|
||||
results['proposed'] = proposed
|
||||
|
||||
Reference in New Issue
Block a user