Auto restart cron job?
Posted: Wed May 05, 2021 7:04 am
Hey LL,
Great that others can restart it now.
Poor lazy being bugged all the time on discord ;p
Could this now be done with a server side check tho?
Make it check every say 5 or 10minutes.
Great that others can restart it now.
Poor lazy being bugged all the time on discord ;p
Could this now be done with a server side check tho?
Make it check every say 5 or 10minutes.
Code: Select all
#Process Name
process = 'server'
#Check running process/daemons
if ps ax | grep -v grep | grep $process
then
echo "$process Health check OK!"
else
echo "$process not found, restarting..."
/usr/local/bin/v2server/server #launch command or link to script to do the tasks the cgi does
fi