1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/integration/targets/eos_template/tests/eapi/force.yaml

39 lines
703 B
YAML
Raw Normal View History

---
- debug: msg="START eapi/force.yaml"
- name: setup
eos_config:
commands:
- no description
- no shutdown
parents:
- interface Ethernet5
match: none
provider: "{{ eapi }}"
- name: configure device with config
eos_template:
src: basic/config.j2
provider: "{{ eapi }}"
force: yes
register: result
- assert:
that:
- "result.changed == true"
- "result.updates is defined"
- name: check device with config
eos_template:
src: basic/config.j2
provider: "{{ eapi }}"
force: yes
register: result
- assert:
that:
- "result.changed == true"
- "result.updates is defined"
- debug: msg="END eapi/force.yaml"