All checks were successful
ci/woodpecker/push/linting Pipeline was successful
15 lines
324 B
YAML
15 lines
324 B
YAML
---
|
|
|
|
# install unbound
|
|
- name: "install unbound"
|
|
community.general.apk:
|
|
name: "unbound"
|
|
update_cache: true
|
|
retries: 3
|
|
when: 'ansible_facts["os_family"] == "Alpine"'
|
|
|
|
- name: "install unbound"
|
|
ansible.builtin.apt:
|
|
name: "unbound"
|
|
cache_valid_time: 120
|
|
when: 'ansible_facts["os_family"] == "Debian"'
|