01e4c41be4
* nxos_integration_tests: Removing obsolete provider parameter * nxos: removing support for local-nxapi plugin * nxos: removing LocalNxapi plugin implementation * nxos_nxapi: removing local plugin usage * REVERT - nxos: removing LocalNxapi plugin implementation * Addressing yamllint issues * Removing the condition on the debug messages * Restoring changes done to nxos_nxapi* tests * Retaining timeout of 500 on nxos_smoke test * Some cleanup * Addressing latest comments * Restoring the nxos_smoke and removing timeout from nxos_config and nxos_rollback
45 lines
920 B
YAML
45 lines
920 B
YAML
---
|
|
- debug: msg="START connection={{ ansible_connection }} nxos_vtp_domain 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 vtp domain
|
|
nxos_vtp_domain: &configure
|
|
domain: ntc
|
|
register: result
|
|
|
|
- assert: &true
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: "Conf Idempotence"
|
|
nxos_vtp_domain: *configure
|
|
register: result
|
|
|
|
- assert: &false
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
when: vtp_run
|
|
|
|
always:
|
|
- name: disable feature vtp
|
|
nxos_feature:
|
|
feature: vtp
|
|
state: disabled
|
|
|
|
- debug: msg="END connection={{ ansible_connection }} nxos_vtp_domain sanity test"
|