From 8454f975e54d8d226621f6d60429ae9053cb09bd Mon Sep 17 00:00:00 2001 From: Fabio Sinibaldi Date: Mon, 27 Jul 2026 17:19:39 +0200 Subject: [PATCH] fix missing new line in sudoers --- ansible/playbooks/bootstrap.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/playbooks/bootstrap.yaml b/ansible/playbooks/bootstrap.yaml index 41471e8..008a181 100644 --- a/ansible/playbooks/bootstrap.yaml +++ b/ansible/playbooks/bootstrap.yaml @@ -26,7 +26,7 @@ - name: Set ansible user as sudoer ansible.builtin.copy: - content: "ansible ALL = (ALL) NOPASSWD:ALL" + content: "ansible ALL = (ALL) NOPASSWD:ALL\n" dest: /etc/sudoers.d/ansible owner: root group: root