2016-10-28 20:50:29 +02:00
|
|
|
---
|
2017-12-13 20:30:24 +01:00
|
|
|
- debug: msg="START cli/config_check.yaml on connection={{ ansible_connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- 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"
|
|
|
|
|
2017-12-13 20:30:24 +01:00
|
|
|
- debug: msg="END cli/config_check.yaml on connection={{ ansible_connection }}"
|