cb1b705218
* Preliminary steps * Fix Python3 network_cli ios * Add connection to debug strings * Fix ios confirm prompt by way of optional newline Also update ios_user delete tests
40 lines
730 B
YAML
40 lines
730 B
YAML
---
|
|
- debug: msg="START cli/set_hostname.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: setup
|
|
ios_config:
|
|
lines: hostname switch
|
|
match: none
|
|
authorize: yes
|
|
become: yes
|
|
|
|
- name: configure hostname
|
|
ios_system:
|
|
hostname: foo
|
|
authorize: yes
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: verify hostname
|
|
ios_system:
|
|
hostname: foo
|
|
authorize: yes
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: teardown
|
|
ios_config:
|
|
lines: "hostname {{ inventory_hostname }}"
|
|
match: none
|
|
authorize: yes
|
|
become: yes
|
|
|
|
- debug: msg="END cli/set_hostname.yaml on connection={{ ansible_connection }}"
|