From 457765f26dd25667ccbc5ac8f9761abfe25f6d4f Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 30 Apr 2022 08:46:21 +0300 Subject: fix(sane_debian_system/apt): allow root to use sudo without password Previously, wrong username was used in sudo config. Sponsored-by: author --- roles/sane_debian_system/tasks/apt.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'roles') diff --git a/roles/sane_debian_system/tasks/apt.yml b/roles/sane_debian_system/tasks/apt.yml index bb9ccc2..fcc4c11 100644 --- a/roles/sane_debian_system/tasks/apt.yml +++ b/roles/sane_debian_system/tasks/apt.yml @@ -51,7 +51,7 @@ - name: "allow root to use sudo" copy: content: | - liw ALL=(ALL:ALL) NOPASSWD: ALL + root ALL=(ALL:ALL) NOPASSWD: ALL dest: /etc/sudoers.d/root mode: 0600 -- cgit v1.2.1