Added root to SUPERUSERGROUP

This commit is contained in:
Jonwin
2023-08-28 17:11:35 +02:00
committed by GitHub
parent 2ef418c452
commit ee6d07ead9

View File

@@ -40,7 +40,7 @@ checkEnv() {
fi
## Check SuperUser Group
SUPERUSERGROUP='wheel sudo'
SUPERUSERGROUP='wheel sudo root'
for sug in ${SUPERUSERGROUP}; do
if groups | grep ${sug}; then
SUGROUP=${sug}