dev #1

Merged
liupeng merged 8 commits from dev into main 2024-02-28 16:03:08 +08:00
Showing only changes of commit 3ea164df2d - Show all commits

11
hc.sh Normal file
View File

@ -0,0 +1,11 @@
#!/bin/ash
host=127.0.0.1
port=9000
nc -w 1 -z $host $port 2>&1 >/dev/null
if [ $? -eq 0 ];then
exit 0
else
exit 1
fi