From 6f47e6ee1915473b29d14e27b7abdaa8cdb02d1e Mon Sep 17 00:00:00 2001 From: BodgeMaster <> Date: Thu, 9 Apr 2026 16:22:38 +0200 Subject: [PATCH] install stage 2: add more user groups --- install-stage2.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/install-stage2.sh b/install-stage2.sh index c50e3a4..a2e3203 100644 --- a/install-stage2.sh +++ b/install-stage2.sh @@ -131,13 +131,8 @@ echo "Setting up user..." read -p "Enter username: " NEW_USER #TODO: let the user choose additional groups (suggest sane defaults for different use cases) # cdrom? optical? storage? what they do? -# scanner -# network (check if this even still does anything) -# kvm -# audio, video -# dialout # users (dows this even do anything) -useradd -m -s /bin/bash -G wheel,video,audio,dialout,network "$NEW_USER" +useradd -m -s /bin/bash -G wheel,users,kvm,video,audio,dialout,network,scanner "$NEW_USER" passwd "$NEW_USER" echo "Cleaning up installation files..."