From 332f7112ac0fe36ec2c64f758aa9156b240e5b38 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Wed, 29 Apr 2026 17:59:25 +0200 Subject: [PATCH] style: add missing quotes --- tasks/dns.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/dns.yaml b/tasks/dns.yaml index 3fffeaf..c9a96b3 100644 --- a/tasks/dns.yaml +++ b/tasks/dns.yaml @@ -5,7 +5,7 @@ ansible.builtin.template: src: "dns/resolv.conf.j2" dest: "/etc/resolv.conf" - owner: root - group: root + owner: "root" + group: "root" mode: "0644" - when: ansible_facts['distribution'] in ['Alpine', 'Debian'] + when: "ansible_facts['distribution'] in ['Alpine', 'Debian']"