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.
ansible/test/integration/targets/nxos_system/tests/nxapi/set_domain_name.yaml

35 lines
672 B
YAML

---
- debug: msg="START nxapi/set_domain_name.yaml"
- name: setup
nxos_config:
lines: no ip domain-name eng.ansible.com
match: none
# NXAPI errors if you try to remove something that doesn't exist
ignore_errors: yes
- name: configure domain_name
nxos_system:
domain_name: eng.ansible.com
register: result
- assert:
that:
- "result.changed == true"
- name: verify domain_name
nxos_system:
domain_name: eng.ansible.com
register: result
- assert:
that:
- "result.changed == false"
- name: teardown
nxos_config:
lines: no ip domain-name eng.ansible.com
match: none
- debug: msg="END nxapi/set_domain_name.yaml"