Yeah, Oscam starts in the background if you specify -b and it's mandatory to do so in a startup script, but I was more thinking of some additional stuff dynamically updating servers user/pass for example

Code: Select all
/path/to/mydeamonD -args &
Code: Select all
$OSCAM_DIR/$BUILD -b -c $OSCAM_DIR -w 0
Code: Select all
#!/bin/sh
kill $(/mnt/bin/pgrep oscam-)
Code: Select all
#!/bin/sh
OSCAM_DIR=/mnt/opt/privateer/usr/bin/oscam
$OSCAM_DIR/oscam-* -c $OSCAM_DIR -w 0 -b
1ST POST wrote:
- NOCMDONPVR prevents 'CMD:' scripts to be launched if PVR is active (for example if you use cmd_off script to kill oscam and don't want your current recording to end prematurely on soft-off
). CMD_ON won't be launched if CMD_OFF wasn't launched due to active PVR.