Current time: 10-05-2024, 11:34 AM Hello There, Guest! (LoginRegister)


Post Reply 
authlib/authdaemond zuviele Prozesse
Author Message
fulltilt Offline
Member
***

Posts: 1,225
Joined: Apr 2007
Reputation: 5
Post: #5
RE: authlib/authdaemond zuviele Prozesse
Sieht bei mir etwas anders aus:

Code:
#! /bin/sh -e

prefix="/usr"
exec_prefix=${prefix}
sysconfdir="/etc/courier"
sbindir="${exec_prefix}/sbin"
daemonscript="${sbindir}/authdaemond"

. /lib/lsb/init-functions

# Check for a leftover init script
if [ ! -x $daemonscript ]; then
    exit 0
fi

case "$1" in
start)
    # Start daemon.
    cd /
    log_daemon_msg "Starting Courier authentication services" "authdaemond"
    $daemonscript start
    log_end_msg 0
    ;;
stop)
    # Stop daemon.
    cd /
    log_daemon_msg "Stopping Courier authentication services" "authdaemond"
    $daemonscript stop
    log_end_msg 0
    ;;
restart|reload|force-reload)
    $0 stop
    $0 start
    ;;
*)
    echo "Usage: $0 {start|stop|restart|reload|force-reload}" >&2
    exit 2
    ;;
esac
exit 0


Cube Wrote:Vielleicht liegt es an dem in der Installationsanleitung beschriebenen Problem:

Quote:10. There is an error in some courier-versions. Courier won't stop, if you use
/etc/init.d/courier-authdaemon stop, so change it:
# nano /etc/ini.d/courier-authdaemon

change: ${libexecdir}/authlib/authdaemon stop
with: killall authdaemond.plain
11-09-2007 02:00 AM
Find all posts by this user Quote this message in a reply
Post Reply 


Messages In This Thread
RE: authlib/authdaemond zuviele Prozesse - fulltilt - 11-09-2007 02:00 AM

Forum Jump:


User(s) browsing this thread: 6 Guest(s)