mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
9b9a8749da
* 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
15 lines
325 B
YAML
15 lines
325 B
YAML
---
|
|
- debug: msg="START TRANSPORT:CLI nxos_vrf sanity test"
|
|
|
|
- name: Ensure ntc VRF exists on switch
|
|
nxos_vrf:
|
|
vrf: ntc
|
|
provider: "{{ cli }}"
|
|
|
|
- name: Ensure ntc VRF does not exist on switch
|
|
nxos_vrf:
|
|
vrf: ntc
|
|
state: absent
|
|
provider: "{{ cli }}"
|
|
|
|
- debug: msg="END TRANSPORT:CLI nxos_vrf sanity test"
|