Hello everybody
There someone who can tell me if this script is correct
This is a script oscamchek.sh
-----------------------------------------------------------------------------------------------------------------
#!/bin/sh
process=`ps auxwww | grep oscam | grep -v grep | awk '{print $1}'`
if [ -z '$process' ]; then
echo "Couldn't find oscam running. Restarting server-binary" >> /var/log/oscam.check
nohup /usr/local/bin/oscam >> /var/log/oscam.log &
else
echo "oscam is still OK!" >> /var/log/oscam.check
fi
--------------------------------------------------------------------------------------------------------------------
Then i have modified the file crontab
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
# m h dom mon dow user command
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
#
56 03 * * * root killall oscam
59 03 * * * root /usr/local/bin/oscam -b
*/2 * * * * root /var/script/OscamCheck.sh ------> in theory, the script checks every two minutes if oscam running!(it's correct?) and if it crashes reboots itself?
20 5 * * * root reboot ------> the pc reboot every day at 5.20 AM
THIS CONFIGURATION IS CORRECT?
Thanks
