mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
483df13626
* I seem to have forgotten the back half of tests * Set http timeout from persistent_command_timeout * Tweak URL generation and provide URL on error * Push var_options to connection process * Don't wait forever if coming from persistent * Don't send the entire contents of variables to ansible-connection
28 lines
728 B
YAML
28 lines
728 B
YAML
---
|
|
- debug: msg="START connection={{ ansible_connection }} nxos_rollback sanity test"
|
|
- debug: msg="Using provider={{ connection.transport }}"
|
|
when: ansible_connection == "local"
|
|
|
|
- name: delete existing checkpoint file
|
|
nxos_config: &delete
|
|
commands:
|
|
- terminal dont-ask
|
|
- delete backup.cfg
|
|
match: none
|
|
ignore_errors: yes
|
|
|
|
- name: Create checkpoint file
|
|
nxos_rollback:
|
|
checkpoint_file: backup.cfg
|
|
timeout: 300
|
|
|
|
- name: rollback to the previously created checkpoint file
|
|
nxos_rollback:
|
|
rollback_to: backup.cfg
|
|
timeout: 300
|
|
|
|
- name: cleanup checkpoint file
|
|
nxos_config: *delete
|
|
ignore_errors: yes
|
|
|
|
- debug: msg="END connection={{ ansible_connection }} nxos_rollback sanity test"
|