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

37 lines
728 B
YAML

---
- debug: msg="START cli/set_domain_name.yaml on connection={{ ansible_connection }}"
- name: setup
ios_config:
lines: no ip domain-name
match: none
provider: "{{ cli }}"
- name: configure domain_name
ios_system:
domain_name: eng.ansible.com
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == true"
- name: verify domain_name
ios_system:
domain_name: eng.ansible.com
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- name: teardown
ios_config:
lines: no ip domain-name
match: none
provider: "{{ cli }}"
- debug: msg="END cli/set_domain_name.yaml on connection={{ ansible_connection }}"