vncmqtt/health.sh

13 lines
162 B
Bash
Raw Normal View History

2023-07-24 20:33:13 +00:00
#!/bin/sh
DT=$(date +%s)
CT=$(stat -c %Z capture.time)
2023-07-24 22:21:47 +00:00
if [ $(( DT - CT )) -gt $(( 5 * INTERVAL )) ];then
2023-07-24 20:33:13 +00:00
echo bad
false
else
echo good
true
fi