1
0
mirror of https://github.com/hiskaNG/acme.sh.git synced 2026-08-16 10:53:00 +00:00

fix nc issue for freebsd

This commit is contained in:
neil
2016-03-23 23:02:59 +08:00
parent 14165e5a9b
commit 6d60f28852
+2
View File
@@ -601,6 +601,8 @@ _startserver() {
else
if echo "$nchelp" | grep "GNU netcat" >/dev/null && echo "$nchelp" | grep "\-c, \-\-close" >/dev/null ; then
_NC="nc -c -l"
elif echo "$nchelp" | grep "\-N" |grep "Shutdown the network socket after EOF on stdin" >/dev/null ; then
_NC="nc -N -l"
else
_NC="nc -l"
fi