mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
39 lines
672 B
YAML
39 lines
672 B
YAML
|
---
|
||
|
- debug: msg="START cli/force.yaml"
|
||
|
|
||
|
- name: setup
|
||
|
iosxr_config:
|
||
|
commands:
|
||
|
- no interface Loopback999
|
||
|
match: none
|
||
|
|
||
|
- name: configure device with config
|
||
|
iosxr_template:
|
||
|
src: basic/config.j2
|
||
|
force: yes
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == true"
|
||
|
- "result.updates is defined"
|
||
|
|
||
|
- name: check device with config
|
||
|
iosxr_template:
|
||
|
src: basic/config.j2
|
||
|
force: yes
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == true"
|
||
|
- "result.updates is defined"
|
||
|
|
||
|
- name: teardown
|
||
|
iosxr_config:
|
||
|
commands:
|
||
|
- no interface Loopback999
|
||
|
match: none
|
||
|
|
||
|
- debug: msg="END cli/force.yaml"
|