1da7194534
We don't use authorize on iosxr nor we use a special transport, so no need to use iosxr for CLI at all.
32 lines
528 B
YAML
32 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"
|