From e518b6f5b42741dce5a28e43ea24793a6710c790 Mon Sep 17 00:00:00 2001 From: Nathaniel Case Date: Mon, 17 Apr 2017 08:51:38 -0400 Subject: [PATCH] Clean up import statements for nxos_rollback (#23540) * Clean up import statements for nxos_rollback * Don't try to deal with pre-2.3 logic --- .../modules/network/nxos/nxos_rollback.py | 86 ++++--------------- test/sanity/pep8/legacy-files.txt | 1 - 2 files changed, 15 insertions(+), 72 deletions(-) diff --git a/lib/ansible/modules/network/nxos/nxos_rollback.py b/lib/ansible/modules/network/nxos/nxos_rollback.py index 2d132fa5de5..6b6e4122f88 100644 --- a/lib/ansible/modules/network/nxos/nxos_rollback.py +++ b/lib/ansible/modules/network/nxos/nxos_rollback.py @@ -78,70 +78,18 @@ status: ''' -import re -from ansible.module_utils.nxos import get_config, load_config, run_commands -from ansible.module_utils.nxos import nxos_argument_spec, check_args +from ansible.module_utils.nxos import nxos_argument_spec, run_commands from ansible.module_utils.basic import AnsibleModule -from ansible.module_utils.netcfg import CustomNetworkConfig - -import re - - -def execute_commands(cmds, module, command_type=None): - command_type_map = { - 'cli_show': 'json', - 'cli_show_ascii': 'text' - } - - try: - if command_type: - response = module.execute(cmds, command_type=command_type) - else: - response = module.execute(cmds) - except ShellError: - clie = get_exception() - module.fail_json(msg='Error sending {0}'.format(cmds), - error=str(clie)) - except AttributeError: - try: - if command_type: - command_type = command_type_map.get(command_type) - module.cli.add_commands(cmds, output=command_type) - response = module.cli.run_commands() - else: - module.cli.add_commands(cmds, output=command_type) - response = module.cli.run_commands() - except ShellError: - clie = get_exception() - module.fail_json(msg='Error sending {0}'.format(cmds), - error=str(clie)) - return response - - -def prepare_show_command(command, module): - if module.params['transport'] == 'cli': - execute_commands(command, module) - elif module.params['transport'] == 'nxapi': - execute_commands(command, module, command_type='cli_show_ascii') def checkpoint(filename, module): commands = ['terminal dont-ask', 'checkpoint file %s' % filename] - prepare_show_command(commands, module) + run_commands(module, commands) def rollback(filename, module): commands = ['rollback running-config file %s' % filename] - try: - module.configure(commands) - except AttributeError: - try: - module.cli.add_commands(commands, output='config') - module.cli.run_commands() - except ShellError: - clie = get_exception() - module.fail_json(msg='Error sending CLI commands', - error=str(clie), commands=commands) + run_commands(module, commands) def main(): @@ -156,9 +104,9 @@ def main(): argument_spec.update(nxos_argument_spec) module = AnsibleModule(argument_spec=argument_spec, - mutually_exclusive=[['checkpoint_file', - 'rollback_to']], - supports_check_mode=False) + mutually_exclusive=[['checkpoint_file', + 'rollback_to']], + supports_check_mode=False) checkpoint_file = module.params['checkpoint_file'] rollback_to = module.params['rollback_to'] @@ -166,22 +114,18 @@ def main(): status = None filename = None changed = False - try: - if checkpoint_file: - checkpoint(checkpoint_file, module) - status = 'checkpoint file created' - elif rollback_to: - rollback(rollback_to, module) - status = 'rollback executed' - changed = True - filename = rollback_to or checkpoint_file - except ShellError: - clie = get_exception() - module.fail_json(msg=str(clie)) + + if checkpoint_file: + checkpoint(checkpoint_file, module) + status = 'checkpoint file created' + elif rollback_to: + rollback(rollback_to, module) + status = 'rollback executed' + changed = True + filename = rollback_to or checkpoint_file module.exit_json(changed=changed, status=status, filename=filename) if __name__ == '__main__': main() - diff --git a/test/sanity/pep8/legacy-files.txt b/test/sanity/pep8/legacy-files.txt index e0055c36c2a..2e31a77c298 100644 --- a/test/sanity/pep8/legacy-files.txt +++ b/test/sanity/pep8/legacy-files.txt @@ -588,7 +588,6 @@ lib/ansible/modules/network/nxos/nxos_pim_rp_address.py lib/ansible/modules/network/nxos/nxos_ping.py lib/ansible/modules/network/nxos/nxos_portchannel.py lib/ansible/modules/network/nxos/nxos_reboot.py -lib/ansible/modules/network/nxos/nxos_rollback.py lib/ansible/modules/network/nxos/nxos_smu.py lib/ansible/modules/network/nxos/nxos_snapshot.py lib/ansible/modules/network/nxos/nxos_snmp_community.py