2011-07-26 20:28:49 +02:00
#!/bin/sh
2011-07-11 18:56:29 +02:00
2020-06-02 04:45:11 +02:00
#This script ensures that ep-lite is automatically restarting after an error happens
2011-07-11 18:56:29 +02:00
2020-06-02 04:45:11 +02:00
#Handling Errors
# 0 silent
# 1 email
2011-07-11 18:56:29 +02:00
ERROR_HANDLING = 0
2017-09-14 13:33:27 +02:00
# Your email address which should receive the error messages
2011-07-11 18:56:29 +02:00
EMAIL_ADDRESS = "no-reply@example.com"
2019-10-20 02:09:22 +02:00
# Sets the minimum amount of time between the sending of error emails.
# This ensures you do not get spammed during an endless reboot loop
2011-07-11 18:56:29 +02:00
# It's the time in seconds
TIME_BETWEEN_EMAILS = 600 # 10 minutes
# DON'T EDIT AFTER THIS LINE
LAST_EMAIL_SEND = 0
2020-06-02 04:45:11 +02:00
LOG = " $1 "
2011-07-11 18:56:29 +02:00
2020-06-02 04:45:11 +02:00
#Move to the folder where ep-lite is installed
cd $( dirname $0 )
2011-07-11 18:56:29 +02:00
2020-06-02 04:45:11 +02:00
#Was this script started in the bin folder? if yes move out
if [ -d "../bin" ] ; then
cd "../"
fi
2011-07-11 18:56:29 +02:00
2020-06-02 04:45:11 +02:00
#Check if a logfile parameter is set
if [ -z " ${ LOG } " ] ; then
echo "Set a logfile as the first parameter"
exit 1
fi
2011-07-11 18:56:29 +02:00
2020-06-02 04:45:11 +02:00
shift
while [ 1 ]
do
#Try to touch the file if it doesn't exist
if [ ! -f ${ LOG } ] ; then
touch ${ LOG } || ( echo " Logfile ' ${ LOG } ' is not writeable " && exit 1 )
fi
2019-10-20 02:09:22 +02:00
2020-06-02 04:45:11 +02:00
#Check if the file is writeable
if [ ! -w ${ LOG } ] ; then
echo " Logfile ' ${ LOG } ' is not writeable "
exit 1
fi
2011-07-11 18:56:29 +02:00
2020-06-02 04:45:11 +02:00
#Start the application
bin/run.sh $@ >>${ LOG } 2>>${ LOG }
2019-10-20 02:09:22 +02:00
2020-06-02 04:45:11 +02:00
#Send email
if [ $ERROR_HANDLING = 1 ] ; then
2011-07-11 18:56:29 +02:00
TIME_NOW = $( date +%s)
TIME_SINCE_LAST_SEND = $(( $TIME_NOW - $LAST_EMAIL_SEND ))
2019-10-20 02:09:22 +02:00
2020-06-02 04:45:11 +02:00
if [ $TIME_SINCE_LAST_SEND -gt $TIME_BETWEEN_EMAILS ] ; then
printf " Server was restarted at: $( date) \nThe last 50 lines of the log before the error happens:\n $( tail -n 50 ${ LOG } ) " | mail -s "Pad Server was restarted" $EMAIL_ADDRESS
2019-10-20 02:09:22 +02:00
2011-07-11 18:56:29 +02:00
LAST_EMAIL_SEND = $TIME_NOW
fi
fi
2019-10-20 02:09:22 +02:00
2020-06-02 04:45:11 +02:00
echo "RESTART!" >>${ LOG }
2019-10-20 02:09:22 +02:00
2020-06-02 04:45:11 +02:00
#Sleep 10 seconds before restart
2011-07-11 18:56:29 +02:00
sleep 10
done