mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
613 B
YAML
30 lines
613 B
YAML
8 years ago
|
---
|
||
|
- debug: msg="START cli/config_check.yaml"
|
||
|
|
||
|
- name: setup
|
||
|
vyos_config:
|
||
|
lines: set interfaces loopback lo description test
|
||
|
provider: "{{ cli }}"
|
||
|
|
||
|
- name: configure config_check config command
|
||
|
vyos_config:
|
||
|
lines: delete interfaces loopback lo
|
||
|
provider: "{{ cli }}"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == true"
|
||
|
|
||
|
- name: check config_check config command idempontent
|
||
|
vyos_config:
|
||
|
lines: delete interfaces loopback lo
|
||
|
provider: "{{ cli }}"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
|
||
|
- debug: msg="END cli/config_check.yaml"
|