Bugzilla – Bug 115257
ial cannot be stopped
Last modified: 2007-06-05 11:20:18 UTC
due to 2 bugs in the initscript, ial cannot be stopped.
i am fixing it right now
fixed package submitted to autobuild. Patch is trivial: seife@strolchi:/tmp> cat ial-initscript-fix.diff --- ial 2005-09-05 07:24:08.000000000 +0200 +++ /etc/init.d/ial 2005-09-05 07:28:09.000000000 +0200 @@ -36,7 +36,7 @@ # Parameters (startup) IALDAEMON_PARA="" IALDAEMON_PIDDIR="/var/run/ial" -IALDAEMON_PID=$IALDAEMON_PIDDIR/pid +IALDAEMON_PID=$IALDAEMON_PIDDIR/iald.pid DBUSDAEMON_PIDDIR="/var/run/dbus" DBUSDAEMON_PID=$DBUSDAEMON_PIDDIR/pid @@ -51,7 +51,7 @@ mkdir -p $IALDAEMON_PIDDIR fi if [ -e $IALDAEMON_PID ]; then - if checkproc -p $IALDAEMON_PID &> /dev/null ; then + if checkproc -p $IALDAEMON_PID $IALDAEMON_BIN &> /dev/null ; then echo -n "IAL already started. Not starting." rc_status -v rc_exit Timo: beer on Wednesday ;-)