Kannst du bitte mal dein init script posten mit dem Oscam gestartet wird?
Ich frage mich nämlich warum Oscam bei dir zwei mal aufgerufen wird.
Bash: /etc/init.d/oscam-svn
#!/bin/sh
### BEGIN INIT INFO
# Provides: oscam-svn
# Required-Start: $network $local_fs
# Required-Stop:
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: <Enter a short description of the sortware>
# Description: <Enter a long description of the software>
# <...>
# <...>
### END INIT INFO
# Author: MoonMaker <moonmaker@gmx.de>
# Jan-Pascal <janpascal@vanbest.org>
# PATH should only include /usr/* if it runs after the mountnfs.sh script
PATH=/sbin:/usr/sbin:/bin:/usr/bin
DESC="Latest OSCam Subversion Revision" # Introduce a short description here
NAME="oscam-svn" # Introduce the short server's name here
DAEMON=/usr/bin/$NAME # Introduce the server's location here
PIDFILE=/var/run/$NAME.pid # PID Name
SCRIPTNAME=/etc/init.d/$NAME # Set script name e.g. service oscam-svn restart
CONFIGDIR=/etc/$NAME # Set config directory
TEMPDIR=/tmp/$NAME # Set temp folder
DEBUG_LEVEL=0 # Set [definition='1','3']Debug[/definition] Level (look at /etc/default/oscam-svn)
RESTART_POLICY=2 # Set Restart Policy (look at /etc/default/oscam-svn)
EXTRA_DAEMON_ARGS="" # Defined in /etc/default/oscam-svn
# Exit if the package is not installed
[ -x $DAEMON ] || exit 0
# Read configuration variable file if it is present
[ -r /etc/default/$NAME ] && . /etc/default/$NAME
# Set arguments for the daemon
DAEMON_ARGS="--daemon --pidfile $PIDFILE --debug $DEBUG_LEVEL --restart $RESTART_POLICY --config-dir $CONFIGDIR --temp-dir $TEMPDIR $EXTRA_DAEMON_ARGS"
# Load the VERBOSE setting and other rcS variables
. /lib/init/vars.sh
# Define LSB log_* functions.
# Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
. /lib/lsb/init-functions
#
Alles anzeigen