feat: added alpine support

This commit is contained in:
Simon Cornet 2025-10-24 21:58:35 +02:00
commit e475d2ce40
4 changed files with 25 additions and 4 deletions

View file

@ -6,3 +6,10 @@
name: "unbound"
cache_valid_time: 120
when: 'ansible_os_family == "Debian"'
# install unbound
- name: "install unbound"
community.general.apk:
name: "unbound"
update_cache: true
when: 'ansible_os_family == "Alpine"'