The init script is passing bad arguments to postfix. Quick and dirty fix:


--- postfix     2006-03-02 19:29:26.000000000 -0800
+++ postfix.orig        2006-03-02 19:24:35.000000000 -0800
@@ -57,7 +57,7 @@
            umask $oldumask
        fi

-       if start-stop-daemon --start --exec ${DAEMON} -- start ; then
+ if start-stop-daemon --start --exec ${DAEMON} -- quiet-quick-start; then
            log_end_msg 0
        else
            log_end_msg 1
@@ -75,7 +75,7 @@
        fi
        log_daemon_msg "Stopping Postfix Mail Transport Agent" postfix
        if [ -n "$RUNNING" ]; then
-           if ${DAEMON} stop; then
+           if ${DAEMON} quiet-stop; then
                log_end_msg 0
            else
                log_end_msg 1


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to