ansible/test/integration/targets/nxos_system/tests/common/set_hostname.yaml
Ricardo Carrillo Cruz 2304706bd3 Set hostname to 'switch' on nxos_system teardown (#29126)
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.
2017-09-08 12:09:44 +02:00

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"