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/iosxr_system/tests/cli/set_hostname.yaml

33 lines
528 B
YAML

---
- debug: msg="START cli/set_hostname.yaml"
- name: setup
iosxr_config:
lines: hostname switch
match: none
- name: configure hostname
iosxr_system:
hostname: foo
register: result
- assert:
that:
- "result.changed == true"
- name: verify hostname
iosxr_system:
hostname: foo
register: result
- assert:
that:
- "result.changed == false"
- name: teardown
iosxr_config:
lines: "hostname {{ inventory_hostname }}"
match: none
- debug: msg="END cli/set_hostname.yaml"