diff --git a/installer/resources/install_i2p_service_unix b/installer/resources/install_i2p_service_unix index 9f5c2e19b939a00b3d7bf880d0e233a1d323fc15..1da3a8991a8c874c9d1a4dac33c2590a47e16cbd 100644 --- a/installer/resources/install_i2p_service_unix +++ b/installer/resources/install_i2p_service_unix @@ -15,7 +15,7 @@ # Java Service Wrapper can be found at: # http://wrapper.tanukisoftware.org/doc/english/introduction.html -if [ $UID -ne 0 ]; then +if [ ! "X$USER" = "Xroot" ]; then echo "Sorry, you need root privileges to install services." exit 1 fi @@ -23,7 +23,7 @@ fi ERROR_MSG="Cannot determine operating system type. Please install the service manually." HOST_OS=`./osid` -if [[ ! $HOST_OS || $HOST_OS = "unknown" ]]; then +if [ "X$HOST_OS" = "X" -o "$HOST_OS" = "unknown" ]; then echo "$ERROR_MSG" exit 1 fi diff --git a/installer/resources/uninstall_i2p_service_unix b/installer/resources/uninstall_i2p_service_unix index 091777c03bf66e4a31928ba04dfe04424a4846b6..bed91169d2a7d0fcff1478c82d29f44034585587 100644 --- a/installer/resources/uninstall_i2p_service_unix +++ b/installer/resources/uninstall_i2p_service_unix @@ -15,7 +15,7 @@ # Java Service Wrapper can be found at: # http://wrapper.tanukisoftware.org/doc/english/introduction.html -if [ $UID -ne 0 ]; then +if [ ! "X$USER" = "Xroot" ]; then echo "Sorry, you need root privileges to uninstall services." exit 1 fi @@ -23,7 +23,7 @@ fi ERROR_MSG="Cannot determine operating system type. Please uninstall the service manually." HOST_OS=`./osid` -if [[ ! $HOST_OS || $HOST_OS = "unknown" ]]; then +if [ "X$HOST_OS" = "X" -o "$HOST_OS" = "unknown" ]; then echo "$ERROR_MSG" exit 1 fi