From a3cdf6fe99d54774af51123e78b580c4b6d76462 Mon Sep 17 00:00:00 2001 From: awy Date: Mon, 26 Aug 2024 02:19:47 +0300 Subject: posix compliant root check --- gpu_pass.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gpu_pass.sh b/gpu_pass.sh index beac484..c68ed48 100755 --- a/gpu_pass.sh +++ b/gpu_pass.sh @@ -1,7 +1,9 @@ +#!/bin/sh + WORKDIRECTORY=$PWD PERMUSER="awy" -if [ "$EUID" -ne 0 ] +if [ "$(id -u)" -ne 0 ] then printf "The script has to be run as root.\n" exit fi -- cgit v1.2.3