2017-07-13 20:58:18 +02:00
|
|
|
---
|
2017-12-13 20:30:24 +01:00
|
|
|
- debug: msg="START cli/basic.yaml on connection={{ ansible_connection }}"
|
|
|
|
|
2017-07-13 20:58:18 +02:00
|
|
|
- name: Make sure LLDP is not running before tests
|
|
|
|
vyos_config:
|
|
|
|
lines: delete service lldp
|
|
|
|
|
|
|
|
- name: Enable LLDP service
|
|
|
|
vyos_lldp:
|
|
|
|
state: present
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
|
|
|
- '"set service lldp" in result.commands'
|
|
|
|
|
|
|
|
- name: Enable LLDP service again (idempotent)
|
|
|
|
vyos_lldp:
|
|
|
|
state: present
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == false'
|
|
|
|
|
|
|
|
- name: Disable LLDP service
|
|
|
|
vyos_lldp:
|
|
|
|
state: absent
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
|
|
|
- '"delete service lldp" in result.commands'
|
|
|
|
|
|
|
|
- name:
|
|
|
|
vyos_lldp:
|
|
|
|
state: absent
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == false'
|