2017-03-08 19:21:45 +00:00
|
|
|
---
|
2017-08-17 08:18:00 +00:00
|
|
|
- debug: msg="START {{ connection.transport }}/set_hostname.yaml"
|
2017-03-08 19:21:45 +00:00
|
|
|
|
|
|
|
- name: setup
|
|
|
|
nxos_config:
|
|
|
|
lines: hostname switch
|
|
|
|
match: none
|
2017-08-17 08:18:00 +00:00
|
|
|
provider: "{{ connection }}"
|
2017-03-08 19:21:45 +00:00
|
|
|
|
|
|
|
- name: configure hostname
|
|
|
|
nxos_system:
|
|
|
|
hostname: foo
|
2017-08-17 08:18:00 +00:00
|
|
|
provider: "{{ connection }}"
|
2017-03-08 19:21:45 +00:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
|
|
|
|
- name: verify hostname
|
|
|
|
nxos_system:
|
|
|
|
hostname: foo
|
2017-08-17 08:18:00 +00:00
|
|
|
provider: "{{ connection }}"
|
2017-03-08 19:21:45 +00:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
|
|
|
- name: teardown
|
|
|
|
nxos_config:
|
2017-09-08 10:09:44 +00:00
|
|
|
lines: hostname switch
|
2017-03-08 19:21:45 +00:00
|
|
|
match: none
|
2017-08-17 08:18:00 +00:00
|
|
|
provider: "{{ connection }}"
|
2017-03-08 19:21:45 +00:00
|
|
|
|
2017-08-17 08:18:00 +00:00
|
|
|
- debug: msg="END {{ connection.transport }}/set_hostname.yaml"
|