mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-12-23 05:31:42 +00:00
format code style
This commit is contained in:
parent
c6ec8bc0d9
commit
6a5ee72722
5
acme.sh
5
acme.sh
@ -6365,9 +6365,10 @@ _checkSudo() {
|
|||||||
case "$SUDO_COMMAND" in
|
case "$SUDO_COMMAND" in
|
||||||
*/su)
|
*/su)
|
||||||
#it's a normal user doing `sudo su`, no problem
|
#it's a normal user doing `sudo su`, no problem
|
||||||
return 0 ;;
|
return 0
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
for i in `cat /etc/shells`; do
|
for i in $(cat /etc/shells); do
|
||||||
if [ "$SUDO_COMMAND" = "$i" ]; then
|
if [ "$SUDO_COMMAND" = "$i" ]; then
|
||||||
#it's a normal user running `sudo -i` or `sudo -s`, fine
|
#it's a normal user running `sudo -i` or `sudo -s`, fine
|
||||||
return 0
|
return 0
|
||||||
|
Loading…
Reference in New Issue
Block a user