2017-03-08 20:21:45 +01:00
|
|
|
---
|
2018-01-05 23:01:45 +01:00
|
|
|
- debug: msg="START connection={{ ansible_connection }}/set_hostname.yaml"
|
|
|
|
- debug: msg="Using provider={{ connection.transport }}"
|
|
|
|
when: ansible_connection == "local"
|
2017-03-08 20:21:45 +01:00
|
|
|
|
2018-02-17 05:44:50 +01:00
|
|
|
- block:
|
|
|
|
- name: setup
|
|
|
|
nxos_config:
|
2018-05-24 08:30:04 +02:00
|
|
|
lines: "hostname switch"
|
2018-02-17 05:44:50 +01:00
|
|
|
match: none
|
2018-07-02 15:43:51 +02:00
|
|
|
provider: "{{ connection }}"
|
2018-02-17 05:44:50 +01:00
|
|
|
|
|
|
|
- name: configure hostname
|
|
|
|
nxos_system:
|
|
|
|
hostname: foo
|
2018-07-02 15:43:51 +02:00
|
|
|
provider: "{{ connection }}"
|
2018-02-17 05:44:50 +01:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
|
|
|
|
- name: verify hostname
|
|
|
|
nxos_system:
|
|
|
|
hostname: foo
|
2018-07-02 15:43:51 +02:00
|
|
|
provider: "{{ connection }}"
|
2018-02-17 05:44:50 +01:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
|
|
|
always:
|
|
|
|
- name: teardown
|
|
|
|
nxos_config:
|
2018-05-24 08:30:04 +02:00
|
|
|
lines: "hostname switch"
|
2018-02-17 05:44:50 +01:00
|
|
|
match: none
|
2018-07-02 15:43:51 +02:00
|
|
|
provider: "{{ connection }}"
|
2018-02-17 05:44:50 +01:00
|
|
|
|
|
|
|
|
|
|
|
- debug: msg="END connection={{ ansible_connection }}/set_hostname.yaml"
|