common/tasks/lldpd.yaml
Simon Cornet 2272aa6a58
All checks were successful
ci/woodpecker/push/linting Pipeline was successful
chore: migrate bare ansible_* facts to ansible_facts[] syntax
2026-05-19 09:19:03 +02:00

11 lines
239 B
YAML

---
# install lldpd
- name: "lldpd - installation package"
ansible.builtin.apt:
name: "lldpd"
state: "present"
cache_valid_time: 3600
when: 'ansible_facts["os_family"] == "Debian"'
notify: "restart lldpd"
tags: "lldp"