2017-07-27 15:32:35 +02:00
|
|
|
---
|
2018-01-05 18:39:04 +01:00
|
|
|
- debug: msg="START connection={{ ansible_connection }} nxos_rollback sanity test"
|
|
|
|
- debug: msg="Using provider={{ connection.transport }}"
|
|
|
|
when: ansible_connection == "local"
|
2017-07-27 15:32:35 +02:00
|
|
|
|
|
|
|
- name: delete existing checkpoint file
|
|
|
|
nxos_config: &delete
|
|
|
|
commands:
|
|
|
|
- terminal dont-ask
|
|
|
|
- delete backup.cfg
|
|
|
|
match: none
|
2018-07-02 15:43:51 +02:00
|
|
|
provider: "{{ connection }}"
|
2017-07-27 15:32:35 +02:00
|
|
|
ignore_errors: yes
|
|
|
|
|
|
|
|
- name: Create checkpoint file
|
|
|
|
nxos_rollback:
|
|
|
|
checkpoint_file: backup.cfg
|
2018-07-02 15:43:51 +02:00
|
|
|
provider: "{{ connection }}"
|
2017-07-27 15:32:35 +02:00
|
|
|
timeout: 300
|
|
|
|
|
|
|
|
- name: rollback to the previously created checkpoint file
|
|
|
|
nxos_rollback:
|
|
|
|
rollback_to: backup.cfg
|
2018-07-02 15:43:51 +02:00
|
|
|
provider: "{{ connection }}"
|
2017-07-27 15:32:35 +02:00
|
|
|
timeout: 300
|
|
|
|
|
|
|
|
- name: cleanup checkpoint file
|
|
|
|
nxos_config: *delete
|
|
|
|
ignore_errors: yes
|
|
|
|
|
2018-01-05 18:39:04 +01:00
|
|
|
- debug: msg="END connection={{ ansible_connection }} nxos_rollback sanity test"
|