2304706bd3
On setup we set it to 'switch', so teardown should be 'switch'. Also, using inventory_hostname breaks the test, since in our CI it's a long UUID string, which exceeds the 32 chars maximum for setting a hostname on NXOS.
36 lines
682 B
YAML
36 lines
682 B
YAML
---
|
|
- debug: msg="START {{ connection.transport }}/set_hostname.yaml"
|
|
|
|
- name: setup
|
|
nxos_config:
|
|
lines: hostname switch
|
|
match: none
|
|
provider: "{{ connection }}"
|
|
|
|
- name: configure hostname
|
|
nxos_system:
|
|
hostname: foo
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: verify hostname
|
|
nxos_system:
|
|
hostname: foo
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: teardown
|
|
nxos_config:
|
|
lines: hostname switch
|
|
match: none
|
|
provider: "{{ connection }}"
|
|
|
|
- debug: msg="END {{ connection.transport }}/set_hostname.yaml"
|