2017-03-08 20:21:45 +01:00
|
|
|
---
|
2017-12-20 15:03:29 +01:00
|
|
|
- debug: msg="START cli/set_hostname.yaml on connection={{ ansible_connection }}"
|
2017-03-08 20:21:45 +01:00
|
|
|
|
|
|
|
- name: setup
|
|
|
|
ios_config:
|
|
|
|
lines: hostname switch
|
|
|
|
match: none
|
2018-02-02 15:50:15 +01:00
|
|
|
provider: "{{ cli }}"
|
2017-03-08 20:21:45 +01:00
|
|
|
|
|
|
|
- name: configure hostname
|
|
|
|
ios_system:
|
|
|
|
hostname: foo
|
2018-02-02 15:50:15 +01:00
|
|
|
provider: "{{ cli }}"
|
2017-03-08 20:21:45 +01:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
|
|
|
|
- name: verify hostname
|
|
|
|
ios_system:
|
|
|
|
hostname: foo
|
2018-02-02 15:50:15 +01:00
|
|
|
provider: "{{ cli }}"
|
2017-03-08 20:21:45 +01:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
|
|
|
- name: teardown
|
|
|
|
ios_config:
|
|
|
|
lines: "hostname {{ inventory_hostname }}"
|
|
|
|
match: none
|
2018-02-02 15:50:15 +01:00
|
|
|
provider: "{{ cli }}"
|
2017-03-08 20:21:45 +01:00
|
|
|
|
2017-12-20 15:03:29 +01:00
|
|
|
- debug: msg="END cli/set_hostname.yaml on connection={{ ansible_connection }}"
|