Files
gluetun/healthcheck.sh
2019-05-22 09:29:55 +02:00

6 lines
93 B
Bash

#!/bin/sh
out="$(ping -W 3 -c 1 -q -s 8 1.1.1.1)"
[ $? != 0 ] || exit 0
printf "$out"
exit 1