common/tasks/lldpd.yaml
2024-11-22 11:13:16 +01:00

12 lines
238 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"