Add bash script to be called by cron to send alert when it's been more than 6hrs since last POST from device. Still need comments in script, and to figure out how to get cron sending external emails.

This commit is contained in:
jkaplon 2015-09-14 18:16:52 -04:00
parent a3990d708f
commit a160499506

15
dead-man-qry.bash Executable file
View File

@ -0,0 +1,15 @@
#!/bin/bash
NUMHRS=6
# set now variable
NOW=$(date -u +"%Y-%m-%d %H:%M:%S")
RESULT=$(sqlite3 /var/www/tenniscourtsopen.com/courtsopen.db "select published_at from Alerts where datetime(published_at) > datetime('${NOW}', '-${NUMHRS} hours') order by datetime(published_at) limit 1")
# this returns expected string!!!
# echo $RESULT
if [ -z "$RESULT" ]; then
echo "No data from device in last $NUMHRS hours."
fi