[Pkg-utopia-commits] r417 - packages/experimental/dbus/debian
Sjoerd Simons
sjoerd at costa.debian.org
Thu Dec 22 12:15:27 UTC 2005
Author: sjoerd
Date: 2005-12-22 12:15:27 +0000 (Thu, 22 Dec 2005)
New Revision: 417
Modified:
packages/experimental/dbus/debian/changelog
packages/experimental/dbus/debian/dbus.init
Log:
Ignore the run-parts exit code for a more robust init script
Modified: packages/experimental/dbus/debian/changelog
===================================================================
--- packages/experimental/dbus/debian/changelog 2005-12-22 11:13:15 UTC (rev 416)
+++ packages/experimental/dbus/debian/changelog 2005-12-22 12:15:27 UTC (rev 417)
@@ -1,3 +1,9 @@
+dbus (0.60-3) experimental; urgency=low
+
+ * Ignore the exit code of run-parts in the init script.
+
+ -- Sjoerd Simons <sjoerd at debian.org> Thu, 22 Dec 2005 13:12:23 +0100
+
dbus (0.60-2) experimental; urgency=low
* Let python2.4-dbus depend on python2.4-libxml2 (Closes: #343715)
Modified: packages/experimental/dbus/debian/dbus.init
===================================================================
--- packages/experimental/dbus/debian/dbus.init 2005-12-22 11:13:15 UTC (rev 416)
+++ packages/experimental/dbus/debian/dbus.init 2005-12-22 12:15:27 UTC (rev 417)
@@ -55,14 +55,14 @@
--user $DAEMONUSER --exec $DAEMON -- --system $PARAMS
log_end_msg $?
if [ -d $EVENTDIR ]; then
- run-parts --arg=start $EVENTDIR
+ run-parts --arg=start $EVENTDIR || true
fi
}
shut_it_down()
{
if [ -d $EVENTDIR ]; then
- run-parts --reverse --arg=stop $EVENTDIR
+ run-parts --reverse --arg=stop $EVENTDIR || true
fi
log_daemon_msg "Stopping $DESC" "$NAME"
start-stop-daemon --stop --retry 60 --quiet --oknodo --pidfile $PIDFILE \
More information about the Pkg-utopia-commits
mailing list