From 6d5b18e95900f8bd3713ab5d046d7e9d851bb29e Mon Sep 17 00:00:00 2001 From: frederik Date: Thu, 13 Mar 2025 12:07:56 +0100 Subject: [PATCH] the php code no longer needs uid==1000 --- newinstaller.sh | 7 ------- 1 file changed, 7 deletions(-) diff --git a/newinstaller.sh b/newinstaller.sh index c2c46c1..bf075ef 100755 --- a/newinstaller.sh +++ b/newinstaller.sh @@ -25,13 +25,6 @@ if ! sudo -n true; then exit fi -# the php code expects the user with uid 1000 on this system -PRIMARY=$(awk -F: '/1000/{print $1}' /etc/passwd) -if [ $USER != $PRIMARY ]; then - echo "Current user \"$USER\" does not match the user with uid 1000 on this system \"$PRIMARY\". Aborting" - exit -fi - # Simple new installer HOME=$HOME USER=$USER