a197125954
* Quick and dirty sed to add provider * Manually verify the rest of the cases * Add missing provider
38 lines
997 B
YAML
38 lines
997 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
|
|
provider: "{{ connection }}"
|
|
ignore_errors: yes
|
|
|
|
- name: configure domain_list using platform agnostic module
|
|
net_system:
|
|
domain_search:
|
|
- ansible.com
|
|
- redhat.com
|
|
provider: "{{ connection }}"
|
|
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
|
|
provider: "{{ connection }}"
|
|
|
|
- debug: msg="END nxos nxapi/net_system.yaml on connection={{ ansible_connection }}"
|