chore: migrate bare ansible_* facts to ansible_facts[] syntax
All checks were successful
ci/woodpecker/push/linting Pipeline was successful

This commit is contained in:
Simon Cornet 2026-05-19 09:19:08 +02:00
commit a2eb035b7b
2 changed files with 4 additions and 4 deletions

View file

@ -6,10 +6,10 @@
name: "unbound"
update_cache: true
retries: 3
when: 'ansible_os_family == "Alpine"'
when: 'ansible_facts["os_family"] == "Alpine"'
- name: "install unbound"
ansible.builtin.apt:
name: "unbound"
cache_valid_time: 120
when: 'ansible_os_family == "Debian"'
when: 'ansible_facts["os_family"] == "Debian"'