Fixing nxos_vrrp (#5035)

pull/18777/head
Gabriele 8 years ago committed by Matt Clay
parent f89cb1717c
commit c19e3b5924

@ -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

Loading…
Cancel
Save