Forgot to delete some stuff

This commit is contained in:
MangoPig 2025-12-03 07:22:42 +00:00
parent 9bf3bf0d3d
commit 8fe499e6ce

View File

@ -63,9 +63,6 @@ if id "$USERNAME" &>/dev/null; then
else
echo -e "${YELLOW}LOG: Creating user $USERNAME...${NC}"
# Detect Zsh path
ZSH_PATH=$(which zsh)
# Create user with specific UID, GID, Groups, and Shell
useradd -m -u "$USER_UID" -g "$USER_GID" -G "$SUDO_GROUP" -s "$ZSH_PATH" "$USERNAME"