1
0
mirror of https://github.com/ShaYmez/xlxd.git synced 2026-06-08 00:24:41 -04:00
Files
xlxd/scripts/watchdog
T

15 lines
241 B
Bash
Raw Normal View History

2020-08-02 09:56:16 +02:00
#!/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