From: Havoc Pennington Date: Fri, 11 Apr 2003 20:20:05 +0000 (+0000) Subject: 2003-04-11 Havoc Pennington X-Git-Tag: dbus-0.9~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a7ca4d94dc7f9c0ac7d9d43f08bf2ef2e1123e3a;p=platform%2Fupstream%2Fdbus.git 2003-04-11 Havoc Pennington * bus/messagebus.in: remove pid file when stopping the message bus, since the bus won't have privileges to remove it itself. --- diff --git a/ChangeLog b/ChangeLog index c608f29..8cd6dda 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2003-04-11 Havoc Pennington + * bus/messagebus.in: remove pid file when stopping the + message bus, since the bus won't have privileges to remove it + itself. + +2003-04-11 Havoc Pennington + * bus/bus.c (bus_context_new): move credentials change after creating pidfile diff --git a/bus/messagebus.in b/bus/messagebus.in index 45388a5..e4a1696 100755 --- a/bus/messagebus.in +++ b/bus/messagebus.in @@ -37,6 +37,7 @@ stop() { echo if [ $RETVAL -eq 0 ]; then rm -f @EXPANDED_LOCALSTATEDIR@/lock/subsys/messagebus + rm -f @DBUS_SYSTEM_PID_FILE@ fi }