fix format

This commit is contained in:
neilpang 2017-02-14 22:41:34 +08:00
parent 5d943a35f8
commit 302c41edc9

14
acme.sh
View File

@ -2433,11 +2433,17 @@ _checkConf() {
#d , conf #d , conf
_isRealNginxConf() { _isRealNginxConf() {
_debug "_isRealNginxConf $1 $2" _debug "_isRealNginxConf $1 $2"
if [ -f "$2" ] && grep "^ *server_name " "$2" | grep " $1" >/dev/null; then if [ -f "$2" ]; then
return 0 for _fln in $(grep -n "^ *server_name.* $1" "$2" | cut -d : -f 1); do
else _debug _fln "$_fln"
return 1 if [ "$_fln" ]; then
_listen=$(cat "$2" | _head_n "$_fln" | grep "^ *listen .*" | _tail_n 1)
fi fi
done
return 0
fi
return 1
} }
#restore all the nginx conf #restore all the nginx conf