553b6151ad
Ensure a loopback device exists for testing Remove provider: Default is to run task on Network, device, use delegate_to: localhost for local tasks.
38 lines
672 B
YAML
38 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"
|