mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
d55c0cf8dc
* Add n6k support for nxos_vtp_domain * Add n6k support for nxos_vtp_version * Add n6k support for nxos_vtp_password * Fix shippable error
51 lines
1.1 KiB
YAML
51 lines
1.1 KiB
YAML
---
|
|
- debug: msg="START connection={{ ansible_connection }} nxos_vtp_version sanity test"
|
|
- debug: msg="Using provider={{ connection.transport }}"
|
|
when: ansible_connection == "local"
|
|
|
|
- set_fact: vtp_run="true"
|
|
- set_fact: vtp_run="false"
|
|
when: platform is search('N3K-F|N9K-F')
|
|
|
|
- block:
|
|
- name: disable feature vtp
|
|
nxos_feature:
|
|
feature: vtp
|
|
provider: "{{ connection }}"
|
|
state: disabled
|
|
ignore_errors: yes
|
|
|
|
- name: enable feature vtp
|
|
nxos_feature:
|
|
feature: vtp
|
|
provider: "{{ connection }}"
|
|
state: enabled
|
|
|
|
- name: configure vtp version
|
|
nxos_vtp_version: &configure
|
|
version: 2
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert: &true
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: "Conf Idempotence"
|
|
nxos_vtp_version: *configure
|
|
register: result
|
|
|
|
- assert: &false
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
when: vtp_run
|
|
|
|
always:
|
|
- name: disable feature vtp
|
|
nxos_feature:
|
|
feature: vtp
|
|
provider: "{{ connection }}"
|
|
state: disabled
|
|
|
|
- debug: msg="END connection={{ ansible_connection }} nxos_vtp_version sanity test"
|