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
41 lines
843 B
YAML
41 lines
843 B
YAML
---
|
|
- debug: msg="START cli/toplevel.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: setup
|
|
ios_config:
|
|
lines: ['hostname {{ shorter_hostname }}']
|
|
match: none
|
|
authorize: yes
|
|
become: yes
|
|
|
|
- name: configure top level command
|
|
ios_config:
|
|
lines: ['hostname foo']
|
|
authorize: yes
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'hostname foo' in result.updates"
|
|
|
|
- name: configure top level command idempotent check
|
|
ios_config:
|
|
lines: ['hostname foo']
|
|
authorize: yes
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: teardown
|
|
ios_config:
|
|
lines: ['hostname {{ shorter_hostname }}']
|
|
match: none
|
|
authorize: yes
|
|
become: yes
|
|
|
|
- debug: msg="END cli/toplevel.yaml on connection={{ ansible_connection }}"
|