I have CCcam 2.1.3 running on Ubuntu 14.04 machine. I cant get CCcam to write anything to debug logfile. When i start it only with the: -d option form console. The Debug info is shown in console.
This is my Config:
CCCam Startup Script plased in /bin folder:
to startup i use this command:
Bash
#!/bin/sh
CAMNAME="CCcam Server"
# end
start_cam ()
{
/emu/cccam/CCcam.x86_64 -d > /dmm/cccam_logs/cccam.log &
}
stop_cam ()
{
pkill CCcam.x86_64
}
case "$1" in
start)
echo "[SCRIPT] $1: $CAMNAME"
start_cam
;;
stop)
echo "[SCRIPT] $1: $CAMNAME"
stop_cam
;;
restart)
echo "Restaring $CAMNAME"
stop_cam
start_cam
;;
*)
"$0" stop
exit 1
;;
esac
exit 0
Display More
The cccam.log file is Chmodded to 755 (also tried 777).
i Also have a CCcam warnings file in the same directory and that file gets written to.
Does anybody have any idea why its not writing debug to the file?
