i have been reading up that the longer u keep cccam running some times it takes longer to respond
ecm times .etc
i would like to make a script that restarts cccam every day around 4am
so i would need to create a file e.g. CCcamRestart.sh and put it in scripts folder
then would the following code do the trick:
chmod it to 0755 to make it executable
and then i would need to put following into crontab:
could some 1 check this and tell me if it would work??
ecm times .etc
i would like to make a script that restarts cccam every day around 4am
so i would need to create a file e.g. CCcamRestart.sh and put it in scripts folder
then would the following code do the trick:
Code:
echo "Restarting CCcam.x86 : $date" >> /emu/log/RestartCCcam.logecho "cccam... restarting"/emu/cccam/CCcam.x86 & exit
and then i would need to put following into crontab:
Code:
00 4 * * * root /emu/script/./CCcamRestart.sh >>/emu/log/RestartCCcam.log 2>&1
Comment