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.
43 lines
736 B
YAML
43 lines
736 B
YAML
7 years ago
|
---
|
||
|
- 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'
|