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