Jump to content


rumensat

Member Since 1 May 2013
Offline Last Active 27 Jan 2024 09:56
-----

Posts I've Made

In Topic: OpenPli 8.3 Release online in the downloadsection.

29 November 2022 - 11:16

what about script ?


In Topic: OpenPli 8.3 Release online in the downloadsection.

29 November 2022 - 08:29

cheap receivers do not have oscam thats why have to use cccam for this clients


In Topic: OpenPli 8.3 Release online in the downloadsection.

28 November 2022 - 14:40

this is working from 1 year and more - all clients cccam and all clients oscam

this is working in enigma1 and enigma2


In Topic: OpenPli 8.3 Release online in the downloadsection.

28 November 2022 - 13:33

cccam is for clients , oscam is card reader and update via cs357x


In Topic: OpenPli 8.3 Release online in the downloadsection.

28 November 2022 - 13:22

i can run together via telnet  and have no problem - killall /var/bin/CCcam  killall oscam  /var/bin/CCcam  /var/bin/oscam -b

wit older receiver use this script but now not working

 

#!/bin/sh
remove_tmp () {
rm -rf /tmp/ecm.info /tmp/pid.info /tmp/cardinfo
}
case "$1" in
start)
remove_tmp
/var/bin/CCcam &
sleep 15
/var/bin/oscam -b &
;;
stop)
touch /tmp/CCcam.kill
sleep 5
killall -9 CCcam oscam 2>/dev/null
 
sleep 2
remove_tmp
;;
*)
$0 stop
exit 1
;;
esac
exit 0