2425374fdd
* Fix vyos on network_cli on python3 bytes do not have format() in Python3 * Push connection to tasks, with bonus connection=local test * Run tests without explicit connection set * Add/update START messages where appropriate
26 lines
613 B
YAML
26 lines
613 B
YAML
---
|
|
- debug: msg="START cli/config_check.yaml on connection={{ ansible_connection }}"
|
|
|
|
- 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 on connection={{ ansible_connection }}"
|