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
35 lines
898 B
YAML
35 lines
898 B
YAML
---
|
|
- debug: msg="START nxos nxapi/net_system.yaml on connection={{ ansible_connection }}"
|
|
|
|
# Add minimal testcase to check args are passed correctly to
|
|
# implementation module and module run is successful.
|
|
|
|
- name: setup
|
|
nxos_config:
|
|
lines:
|
|
- no ip domain-list ansible.com
|
|
- no ip domain-list redhat.com
|
|
match: none
|
|
ignore_errors: yes
|
|
|
|
- name: configure domain_list using platform agnostic module
|
|
net_system:
|
|
domain_search:
|
|
- ansible.com
|
|
- redhat.com
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- result.changed == true
|
|
- "'ip domain-list ansible.com' in result.commands"
|
|
- "'ip domain-list redhat.com' in result.commands"
|
|
|
|
- name: setup
|
|
nxos_config:
|
|
lines:
|
|
- no ip domain-list ansible.com
|
|
- no ip domain-list redhat.com
|
|
match: none
|
|
|
|
- debug: msg="END nxos nxapi/net_system.yaml on connection={{ ansible_connection }}"
|