mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-13 01:41:47 +00:00
fix sudo issue
This commit is contained in:
parent
3d2df3ba93
commit
c6ec8bc0d9
16
acme.sh
16
acme.sh
@ -6362,11 +6362,17 @@ _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
|
||||
#it's a normal user doing "sudo su", or `sudo -i` or `sudo -s`
|
||||
#fine
|
||||
return 0
|
||||
fi
|
||||
case "$SUDO_COMMAND" in
|
||||
*/su )
|
||||
#it's a normal user doing `sudo su`, no problem
|
||||
return 0 ;;
|
||||
esac
|
||||
for i in `cat /etc/shells`; do
|
||||
if [ "$SUDO_COMMAND" = "$i" ]; then
|
||||
#it's a normal user running `sudo -i` or `sudo -s`, fine
|
||||
return 0
|
||||
fi
|
||||
done
|
||||
#otherwise
|
||||
return 1
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user