mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
9b9a8749da
* fix issues with python3.x * Add integration testa and fix for nxos_evpn_vni * add nxos_evpn_vni to nxos.yaml * fix get_vtp_config() * add new integration tests * fix rollback * add integration test files
29 lines
667 B
YAML
29 lines
667 B
YAML
---
|
|
- debug: msg="START TRANSPORT:CLI nxos_rollback sanity test"
|
|
|
|
- name: delete existing checkpoint file
|
|
nxos_config: &delete
|
|
commands:
|
|
- terminal dont-ask
|
|
- delete backup.cfg
|
|
match: none
|
|
provider: "{{ cli }}"
|
|
ignore_errors: yes
|
|
|
|
- name: Create checkpoint file
|
|
nxos_rollback:
|
|
checkpoint_file: backup.cfg
|
|
timeout: 300
|
|
provider: "{{ cli }}"
|
|
|
|
- name: rollback to the previously created checkpoint file
|
|
nxos_rollback:
|
|
rollback_to: backup.cfg
|
|
timeout: 300
|
|
provider: "{{ cli }}"
|
|
|
|
- name: cleanup checkpoint file
|
|
nxos_config: *delete
|
|
ignore_errors: yes
|
|
|
|
- debug: msg="END TRANSPORT:CLI nxos_rollback sanity test"
|