mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
24 lines
548 B
YAML
24 lines
548 B
YAML
|
---
|
||
|
- debug: msg="START TRANSPORT:{{ connection.transport }} nxos_vtp_domain sanity test"
|
||
|
|
||
|
- block:
|
||
|
- name: enable feature vtp
|
||
|
nxos_feature:
|
||
|
feature: vtp
|
||
|
state: enabled
|
||
|
provider: "{{ connection }}"
|
||
|
|
||
|
- name: configure vtp domain
|
||
|
nxos_vtp_domain:
|
||
|
domain: ntc
|
||
|
provider: "{{ connection }}"
|
||
|
|
||
|
always:
|
||
|
- name: disable feature vtp
|
||
|
nxos_feature:
|
||
|
feature: vtp
|
||
|
state: disabled
|
||
|
provider: "{{ connection }}"
|
||
|
|
||
|
- debug: msg="END TRANSPORT:{{ connection.transport }} nxos_vtp_domain sanity test"
|