common/tasks/lldpd.yaml
2025-07-11 19:25:53 +02:00

11 lines
232 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"