From b6dae92276824896309ffd367b79cec012057d9f Mon Sep 17 00:00:00 2001 From: user1 Date: Thu, 30 Mar 2023 00:34:53 +0200 Subject: [PATCH] create group users at gid 1000 --- arch-graphical-install-auto.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch-graphical-install-auto.sh b/arch-graphical-install-auto.sh index e1c0298..fdd389f 100755 --- a/arch-graphical-install-auto.sh +++ b/arch-graphical-install-auto.sh @@ -104,8 +104,8 @@ function standartinstallation() { function addusers() { # Erstelle Gruppen - groupid=2000 - for wort in wheel audio input power storage video sys optical adm lp scanner sddm kvm fuse autologin network wireshark docker libvirt libvirtdbus; do + groupid=1000 + for wort in users wheel audio input power storage video sys optical adm lp scanner sddm kvm fuse autologin network wireshark docker libvirt libvirtdbus; do if ! cat /etc/group | grep ${wort}; then while cat /etc/group | grep ${groupid}; do groupid=$((${groupid} + 1))