ansible/test/integration/targets/nxos_rollback/tests/cli/sanity.yaml
saichint 9b9a8749da Add integration tests and fix nxos providers (#26913)
* 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
2017-07-27 09:32:35 -04:00

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"