39 lines
850 B
YAML
39 lines
850 B
YAML
---
|
|
- debug: msg="START cli/toplevel_nonidempotent.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: setup
|
|
ios_config:
|
|
lines: ['hostname {{ shorter_hostname }}']
|
|
match: none
|
|
authorize: yes
|
|
|
|
- name: configure top level command
|
|
ios_config:
|
|
lines: ['hostname foo']
|
|
match: strict
|
|
authorize: 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']
|
|
match: strict
|
|
authorize: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: teardown
|
|
ios_config:
|
|
lines: ['hostname {{ shorter_hostname }}']
|
|
match: none
|
|
authorize: yes
|
|
|
|
- debug: msg="END cli/toplevel_nonidempotent.yaml on connection={{ ansible_connection }}"
|