diff --git a/create-user.sh b/create-user.sh index b923998..39d8da3 100644 --- a/create-user.sh +++ b/create-user.sh @@ -17,6 +17,9 @@ fi read -p "Comma-separated groups to add (e.g. sudo,docker): " GROUPS +# DEBUG LINE +echo "[DEBUG] Raw GROUPS value: '$GROUPS'" + # Create the user if not exists if id "$USERNAME" &>/dev/null; then echo "[*] User '$USERNAME' already exists. Skipping creation."