1
0
mirror of https://github.com/ShaYmez/xlxd.git synced 2024-09-27 15:26:34 -04:00
xlxd/scripts/watchdog
LX1IQ fa7b3e8098
Create watchdog
Small watchdog script to check the connectivity to the ambed hardware.
If the usb port gets unresponsive and you get persistent timeouts. The script restarts the ambed service.
You can run the script every "x" via a cronjob.
2020-08-02 09:56:16 +02:00

15 lines
241 B
Bash

#!/bin/bash
sleep 5
PATTERN=timed
FILE=/var/log/syslog
if grep -q $PATTERN $FILE;
then
echo "ambed timeout error"
> /var/log/syslog
service ambed restart
else
echo "all ok"
echo "Exiting..."
exit 0
fi