33 lines
528 B
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"
|