make antivirus-healthcheck more understandable
parent
040c1e529a
commit
f0f5cea5d1
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
if [ "$(echo PING | nc localhost 3310)" = "PONG" ]; then
|
||||||
|
echo "ping successful"
|
||||||
|
else
|
||||||
|
echo "ping failed"
|
||||||
|
exit 1
|
||||||
|
fi
|
Loading…
Reference in New Issue