fix systemd-resolved not being installed
Some checks failed
/ Ansible Lint (pull_request) Has been cancelled
/ Ansible Lint (push) Has been cancelled

closes #88
This commit is contained in:
lilly 2026-05-03 16:41:19 +02:00
commit 111450b908
Signed by: lilly
SSH key fingerprint: SHA256:y9T5GFw2A20WVklhetIxG1+kcg/Ce0shnQmbu1LQ37g

View file

@ -1,4 +1,11 @@
---
- name: Ensure systemd-resolved is installed
tags: [ "deploy_systemd_resolved_config" ]
become: true
when: ansible_facts["distribution"] == "Debian" and (ansible_facts["distribution_major_version"] | int) >= 13
ansible.builtin.package:
name: [ "systemd-resolved" ]
- name: Deploy systemd-resolved config
tags: [ "deploy_systemd_resolved_config" ]
become: true