common/tasks/lldpd.yaml
2025-07-11 21:37:24 +02:00

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"