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.
24 lines
481 B
YAML
24 lines
481 B
YAML
7 years ago
|
---
|
||
|
- debug: msg="START TRANSPORT:CLI nxos_vtp_domain sanity test"
|
||
|
|
||
|
- block:
|
||
|
- name: enable feature vtp
|
||
|
nxos_feature:
|
||
|
feature: vtp
|
||
|
state: enabled
|
||
|
provider: "{{ cli }}"
|
||
|
|
||
|
- name: configure vtp domain
|
||
|
nxos_vtp_domain:
|
||
|
domain: ntc
|
||
|
provider: "{{ cli }}"
|
||
|
|
||
|
always:
|
||
|
- name: disable feature vtp
|
||
|
nxos_feature:
|
||
|
feature: vtp
|
||
|
state: disabled
|
||
|
provider: "{{ cli }}"
|
||
|
|
||
|
- debug: msg="END TRANSPORT:CLI nxos_vtp_domain sanity test"
|