2
0
mirror of https://github.com/acmesh-official/acme.sh synced 2025-08-30 22:05:34 +00:00

Merge pull request #2574 from rewqazxv/master

Fix sudo issue
This commit is contained in:
neil
2020-08-02 14:31:45 +08:00
committed by GitHub

View File

@@ -6448,10 +6448,10 @@ _checkSudo() {
#it's root using sudo, no matter it's using sudo or not, just fine
return 0
fi
if [ "$SUDO_COMMAND" = "/bin/su" ] || [ "$SUDO_COMMAND" = "/bin/bash" ]; then
if [ -n "$SUDO_COMMAND" ]; then
#it's a normal user doing "sudo su", or `sudo -i` or `sudo -s`
#fine
return 0
_endswith "$SUDO_COMMAND" /bin/su || grep "^$SUDO_COMMAND\$" /etc/shells >/dev/null 2>&1
return $?
fi
#otherwise
return 1