mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-11-01 11:37:06 +08:00
9 lines
151 B
Bash
9 lines
151 B
Bash
#!/bin/bash
|
|
|
|
if [ "$(echo "PING" | nc 127.0.0.1 3310)" != "PONG" ]; then
|
|
echo "ERROR: Unable to contact server"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Clamd is up"
|
|
exit 0
|