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.
50 lines
1011 B
YAML
50 lines
1011 B
YAML
---
|
|
- debug: msg="START connection={{ ansible_connection }} nxos_vtp_version sanity test"
|
|
|
|
- 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
|
|
state: disabled
|
|
ignore_errors: yes
|
|
|
|
- name: enable feature vtp
|
|
nxos_feature:
|
|
feature: vtp
|
|
state: enabled
|
|
|
|
- name: configure supporting vtp domain
|
|
nxos_vtp_domain:
|
|
domain: foo
|
|
|
|
- name: configure vtp version
|
|
nxos_vtp_version: &configure
|
|
version: 2
|
|
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 | bool
|
|
|
|
always:
|
|
- name: disable feature vtp
|
|
nxos_feature:
|
|
feature: vtp
|
|
state: disabled
|
|
|
|
- debug: msg="END connection={{ ansible_connection }} nxos_vtp_version sanity test"
|