11 lines
230 B
YAML
11 lines
230 B
YAML
---
|
|
|
|
# install lldpd
|
|
- name: "lldpd - installation package"
|
|
ansible.builtin.apt:
|
|
name: "lldpd"
|
|
state: "present"
|
|
cache_valid_time: 3600
|
|
when: 'ansible_os_family == "Debian"'
|
|
notify: "restart lldpd"
|
|
tags: "lldp"
|