Skip to content

Commit 2ebd812

Browse files
author
Vic Thacker
authored
Add live user with specific UID of 1100
- Updated the user creation script to assign the live user a specific UID (1100). This ensures consistency in the user ID for the installed environment.
1 parent 929eafa commit 2ebd812

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common_config/setuser.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e -u
55
set_user()
66
{
77
chroot "${release}" pw usermod -s /usr/local/bin/fish -n root
8-
chroot "${release}" pw useradd "${live_user}" \
8+
chroot "${release}" pw useradd "${live_user}" -u 1100 \
99
-c "GhostBSD Live User" -d "/home/${live_user}" \
1010
-g wheel -G operator -m -s /usr/local/bin/fish -k /usr/share/skel -w none
1111
}

0 commit comments

Comments
 (0)