mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
c822292347
* add static route and hsrp it cases * add snmp_user and snapshot it * password strength correction * fix typo * add compare snapshot as it is fixed in the code now * skip snapshot tests for titanium * titanium and nxapi conditions added
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
---
|
|
- debug: msg="START TRANSPORT:{{ connection.transport }} nxos_snapshot sanity test"
|
|
|
|
- set_fact: snapshot_run="true"
|
|
- set_fact: snapshot_run="false"
|
|
when: titanium and (connection.transport | match('nxapi'))
|
|
|
|
- block:
|
|
- name: create snapshot
|
|
nxos_snapshot:
|
|
action: create
|
|
snapshot_name: test_snapshot1
|
|
description: Ansible
|
|
provider: "{{ connection }}"
|
|
|
|
- name: create another snapshot
|
|
nxos_snapshot:
|
|
action: create
|
|
snapshot_name: test_snapshot2
|
|
description: row
|
|
section: myshow
|
|
show_command: show ip interface brief
|
|
row_id: ROW_intf
|
|
element_key1: intf-name
|
|
provider: "{{ connection }}"
|
|
|
|
- name: compare snapshots
|
|
nxos_snapshot:
|
|
action: compare
|
|
snapshot1: test_snapshot1
|
|
snapshot2: test_snapshot2
|
|
comparison_results_file: compare_snapshots.txt
|
|
compare_option: summary
|
|
path: '.'
|
|
provider: "{{ connection }}"
|
|
|
|
when: snapshot_run
|
|
|
|
always:
|
|
- name: delete snapshot
|
|
nxos_snapshot:
|
|
action: delete_all
|
|
provider: "{{ connection }}"
|
|
ignore_errors: yes
|
|
|
|
- debug: msg="END TRANSPORT:{{ connection.transport }} nxos_snapshot sanity test"
|