From 85e29ef5fdcb10d67bc13382dc81958c1363c492 Mon Sep 17 00:00:00 2001 From: Welteam <8932313+Welteam@users.noreply.github.com> Date: Fri, 16 Dec 2022 20:12:18 +0000 Subject: [PATCH] Fix sed command for sudo access (#21) Adapt sed regexp to variations of sudoers file Signed-off-by: Welteam <8932313+Welteam@users.noreply.github.com> --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index b3e704e..c502e3e 100755 --- a/install.sh +++ b/install.sh @@ -424,7 +424,7 @@ arch-chroot /mnt chown -R $username:users /home/${username}/.config [ -n "$username" ] && echo "Setting user password for ${username}." && arch-chroot /mnt /bin/passwd "$username" # Giving wheel user sudo access. -sed -i 's/# %wheel ALL=(ALL) ALL/%wheel ALL=(ALL) ALL/g' /mnt/etc/sudoers +sed -i 's/# \(%wheel ALL=(ALL\(:ALL\|\)) ALL\)/\1/g' /mnt/etc/sudoers # Change audit logging group echo "log_group = audit" >> /mnt/etc/audit/auditd.conf