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.
16 lines
325 B
YAML
16 lines
325 B
YAML
7 years ago
|
---
|
||
|
- 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"
|