mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
734 B
YAML
30 lines
734 B
YAML
7 years ago
|
---
|
||
7 years ago
|
- debug: msg="START TRANSPORT:{{ connection.transport }} nxos_rollback sanity test"
|
||
7 years ago
|
|
||
|
- name: delete existing checkpoint file
|
||
|
nxos_config: &delete
|
||
|
commands:
|
||
|
- terminal dont-ask
|
||
|
- delete backup.cfg
|
||
|
match: none
|
||
7 years ago
|
provider: "{{ connection }}"
|
||
7 years ago
|
ignore_errors: yes
|
||
|
|
||
|
- name: Create checkpoint file
|
||
|
nxos_rollback:
|
||
|
checkpoint_file: backup.cfg
|
||
|
timeout: 300
|
||
7 years ago
|
provider: "{{ connection }}"
|
||
7 years ago
|
|
||
|
- name: rollback to the previously created checkpoint file
|
||
|
nxos_rollback:
|
||
|
rollback_to: backup.cfg
|
||
|
timeout: 300
|
||
7 years ago
|
provider: "{{ connection }}"
|
||
7 years ago
|
|
||
|
- name: cleanup checkpoint file
|
||
|
nxos_config: *delete
|
||
|
ignore_errors: yes
|
||
|
|
||
7 years ago
|
- debug: msg="END TRANSPORT:{{ connection.transport }} nxos_rollback sanity test"
|