Add eos_lldp module (#34302)

* Add eos_lldp module

*  Implementation for eos_lldp module
*  eos_lldp integration test

* Fix minor issue

* Minor change
This commit is contained in:
Ganesh Nalawade
2018-01-02 18:54:06 +05:30
committed by GitHub
parent 48f20a77af
commit 6dad717a9a
10 changed files with 279 additions and 1 deletions

View File

@@ -0,0 +1,56 @@
---
- debug: msg="START eos_lldp cli/basic.yaml on connection={{ ansible_connection }}"
- name: Make sure LLDP is not running before tests
eos_config:
lines: no lldp run
authorize: yes
provider: "{{ cli }}"
- name: Enable LLDP service
eos_lldp:
state: present
authorize: yes
provider: "{{ cli }}"
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: "{{ cli }}"
register: result
- assert:
that:
- 'result.changed == false'
- name: Disable LLDP service
eos_lldp:
state: absent
authorize: yes
provider: "{{ cli }}"
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: "{{ cli }}"
register: result
- assert:
that:
- 'result.changed == false'
- debug: msg="END eos_lldp cli/basic.yaml on connection={{ ansible_connection }}"