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/cli/set_domain_name.yaml

33 lines
582 B
YAML

---
- debug: msg="START cli/set_domain_name.yaml"
- name: setup
nxos_config:
lines: no ip domain-name eng.ansible.com
match: none
- 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 cli/set_domain_name.yaml"