15 lines
306 B
YAML
15 lines
306 B
YAML
---
|
|
|
|
# install unbound
|
|
- name: "install unbound"
|
|
community.general.apk:
|
|
name: "unbound"
|
|
update_cache: true
|
|
retries: 3
|
|
when: 'ansible_os_family == "Alpine"'
|
|
|
|
- name: "install unbound"
|
|
ansible.builtin.apt:
|
|
name: "unbound"
|
|
cache_valid_time: 120
|
|
when: 'ansible_os_family == "Debian"'
|