f3337e1fba
* Fix over-byte * Update ios tests to call `provider` To continue to support testing `connection: local` * Fix command dict handling in ios_user * Clean up unit tests, too
36 lines
702 B
YAML
36 lines
702 B
YAML
---
|
|
- debug: msg="START cli/set_hostname.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: setup
|
|
ios_config:
|
|
lines: hostname switch
|
|
match: none
|
|
provider: "{{ cli }}"
|
|
|
|
- name: configure hostname
|
|
ios_system:
|
|
hostname: foo
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: verify hostname
|
|
ios_system:
|
|
hostname: foo
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: teardown
|
|
ios_config:
|
|
lines: "hostname {{ inventory_hostname }}"
|
|
match: none
|
|
provider: "{{ cli }}"
|
|
|
|
- debug: msg="END cli/set_hostname.yaml on connection={{ ansible_connection }}"
|