From 4061d92e0cf45496ecff8cda16112f5e66b9e7fa Mon Sep 17 00:00:00 2001 From: pkgdemon Date: Fri, 11 Jul 2025 10:35:43 -0500 Subject: [PATCH] Add another condition to check for liveuser to remove for Gershwin --- backend/functions-users.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/functions-users.sh b/backend/functions-users.sh index 824e86d..6cf5316 100755 --- a/backend/functions-users.sh +++ b/backend/functions-users.sh @@ -85,7 +85,7 @@ add_user() remove_live_user() { - if [ -d "/usr/home/ghostbsd" ] || [ -d "/home/ghostbsd" ] + if [ -d "/usr/home/ghostbsd" ] || [ -d "/home/ghostbsd" ] || [ -d "/Users/ghostbsd" ] then echo "Remove GhostBSD live user" run_chroot_cmd "pw userdel -n ghostbsd -r"