381263ad99
* Remove local from ios_config to avoid needing to add provider * ios_smoke should test all with local to pick up the slack
33 lines
711 B
YAML
33 lines
711 B
YAML
---
|
|
- debug: msg="START cli/toplevel.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: setup
|
|
ios_config:
|
|
lines: ['hostname {{ shorter_hostname }}']
|
|
match: none
|
|
|
|
- name: configure top level command
|
|
ios_config:
|
|
lines: ['hostname foo']
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'hostname foo' in result.updates"
|
|
|
|
- name: configure top level command idempotent check
|
|
ios_config:
|
|
lines: ['hostname foo']
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: teardown
|
|
ios_config:
|
|
lines: ['hostname {{ shorter_hostname }}']
|
|
match: none
|
|
|
|
- debug: msg="END cli/toplevel.yaml on connection={{ ansible_connection }}"
|