mirror of
https://github.com/ShaYmez/ambed-debian-installer.git
synced 2024-11-21 07:31:47 -05:00
b51b5cfa4b
add watchdog
15 lines
241 B
Bash
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
|