Package: avahi-daemon
Version: 0.6.18-4

I have disabled the avahi-daemon via /etc/default/avahi-daemon.

On shutdown the init script gives me an error message that the shutdown 
failed even though the daemon is not running at all.

Please consider the following patch to shut up the init script in that 
case:

--- avahi-daemon.old    2007-05-02 16:00:13.011172405 +0100
+++ avahi-daemon        2007-05-02 16:02:16.299246291 +0100
@@ -64,7 +64,7 @@
 #       Function that stops the daemon/service.
 #
 d_stop() {
-    $DAEMON -c && $DAEMON -k
+    if $DAEMON -c; then $DAEMON -k; else true; fi
 }

 #


--
Markus


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

Reply via email to