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
23 lines
491 B
YAML
23 lines
491 B
YAML
---
|
|
- debug: msg="START TRANSPORT:NXAPI nxos_vtp_domain sanity test"
|
|
|
|
- block:
|
|
- name: enable feature vtp
|
|
nxos_feature:
|
|
feature: vtp
|
|
state: enabled
|
|
provider: "{{ nxapi }}"
|
|
|
|
- name: configure vtp domain
|
|
nxos_vtp_domain:
|
|
domain: ntc
|
|
provider: "{{ nxapi }}"
|
|
|
|
always:
|
|
- name: disable feature vtp
|
|
nxos_feature:
|
|
feature: vtp
|
|
state: disabled
|
|
provider: "{{ nxapi }}"
|
|
|
|
- debug: msg="END TRANSPORT:NXAPI nxos_vtp_domain sanity test"
|