CCam monitoring script


'' .....
a monitoring script for cccam 2.1.1.
dreambox 800
usr/script, put it there chmod 755
then go to services/daemons CRON set it to every minute, redirect to ccheck.sh

thats it

you can test while switching to common interface, after a minute ccam restarts on its own



PS

i cant upload here so here is the config you have to make for linux based systems


#!/bin/sh
if ps x |grep -v grep |grep -c CCcam >/dev/null
then
echo "cccam... ok"
else
echo "cccam... restarting"
/var/bin/CCcam_2.1.1 &
fi

name this file:

ccheck.sh



for 2.0.11

#!/bin/sh
if ps x |grep -v grep |grep -c CCcam >/dev/null
then
echo "cccam... ok"
else
echo "cccam... restarting"
/usr/bin/CCcam_2.0.11 &
fi

filename : ccheck.sh

Im using latest gemini 4.3
Services/Daemons you will find in the Mainscreen of the Blue Panel

and this works perfect, tested it now for 2 hours, and i cant stop the cccam from running

if you use an E1 box, you will have to make the file into var/script ''