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.
57 lines
1.1 KiB
YAML
57 lines
1.1 KiB
YAML
---
|
|
- debug: msg="START eos_lldp eapi/basic.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: Make sure LLDP is not running before tests
|
|
eos_config:
|
|
lines: no lldp run
|
|
authorize: yes
|
|
provider: "{{ eapi }}"
|
|
|
|
- name: Enable LLDP service
|
|
eos_lldp:
|
|
state: present
|
|
authorize: yes
|
|
provider: "{{ eapi }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == true'
|
|
- '"lldp run" in result.commands'
|
|
|
|
- name: Enable LLDP service again (idempotent)
|
|
eos_lldp:
|
|
state: present
|
|
authorize: yes
|
|
provider: "{{ eapi }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == false'
|
|
|
|
- name: Disable LLDP service
|
|
eos_lldp:
|
|
state: absent
|
|
authorize: yes
|
|
provider: "{{ eapi }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == true'
|
|
- '"no lldp run" in result.commands'
|
|
|
|
- name: Disable LLDP service (idempotent)
|
|
eos_lldp:
|
|
state: absent
|
|
authorize: yes
|
|
provider: "{{ eapi }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == false'
|
|
|
|
- debug: msg="END eos_lldp eapi/basic.yaml on connection={{ ansible_connection }}"
|