fix: add dig to test our dns setup

This commit is contained in:
Clément Désiles 2026-01-18 13:46:37 +01:00
parent 5a880d5d5a
commit 94dfe36c46
No known key found for this signature in database

View File

@ -22,3 +22,9 @@
name: wget
state: present
changed_when: false
- name: Install dig utility
package:
name: "{{ (ansible_facts['os_family'] == 'Archlinux') | ternary('bind', 'dnsutils') }}"
state: present
changed_when: false