vncmqtt/health.sh
2023-07-24 15:54:38 -05:00

13 lines
152 B
Bash
Executable File

#!/bin/sh
DT=$(date +%s)
CT=$(stat -c %Z capture.time)
if [ $(( DT - CT )) -gt $INTERVAL ];then
echo bad
false
else
echo good
true
fi