1
0
mirror of https://github.com/hiskaNG/acme.sh.git synced 2026-08-18 20:02:55 +00:00

minor, check 80 port more gracefully

This commit is contained in:
neil
2016-01-06 22:30:18 +08:00
parent 29a02475df
commit b78a2c81d0
+1 -1
View File
@@ -313,7 +313,7 @@ issue() {
_err "Please install netstat first."
return 1
fi
netprc="$(netstat -antpl | grep ':80 ')"
netprc="$(netstat -ntpl | grep ':80 ')"
if [ "$netprc" ] ; then
_err "$netprc"
_err "tcp port 80 is already used by $(echo "$netprc" | cut -d '/' -f 2)"