mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
27 lines
535 B
YAML
27 lines
535 B
YAML
|
---
|
||
|
- debug: msg="START cli/config_check.yaml"
|
||
|
|
||
|
- name: setup
|
||
|
vyos_config:
|
||
|
lines: set interfaces loopback lo description test
|
||
|
|
||
|
- name: configure config_check config command
|
||
|
vyos_config:
|
||
|
lines: delete interfaces loopback lo
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == true"
|
||
|
|
||
|
- name: check config_check config command idempontent
|
||
|
vyos_config:
|
||
|
lines: delete interfaces loopback lo
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
|
||
|
- debug: msg="END cli/config_check.yaml"
|