2009-08-26 17:00:38 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# messagebus: The D-BUS systemwide message bus
|
|
|
|
#
|
|
|
|
# description: This is a daemon which broadcasts notifications of system events \
|
|
|
|
# and other messages. See http://www.freedesktop.org/software/dbus/
|
|
|
|
#
|
|
|
|
# processname: dbus-daemon
|
|
|
|
|
|
|
|
# This is a modified version of the rc.messagebus script distributed with the
|
|
|
|
# dbus sources. Thanks to Don Tanner of the GWare <http://gware.org> Project
|
|
|
|
# for most of the work involved --Robby Workman <rworkman@slackware.com>
|
|
|
|
|
|
|
|
|
|
|
|
PIDFILE=/var/run/dbus/dbus.pid
|
|
|
|
|
|
|
|
start() {
|
2012-09-26 03:10:42 +02:00
|
|
|
mkdir -p $(dirname $PIDFILE)
|
|
|
|
if ! ps -u messagebus -c | grep -wq dbus-daemon; then
|
2009-08-26 17:00:38 +02:00
|
|
|
rm -f $(dirname $PIDFILE)/*
|
|
|
|
if [ -x /usr/bin/dbus-uuidgen -a -x /usr/bin/dbus-daemon ] ; then
|
|
|
|
echo "Starting system message bus: /usr/bin/dbus-uuidgen --ensure ; /usr/bin/dbus-daemon --system"
|
|
|
|
/usr/bin/dbus-uuidgen --ensure
|
|
|
|
/usr/bin/dbus-daemon --system 1> /dev/null
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
if [ -e "$PIDFILE" ]; then
|
|
|
|
echo "Stopping system message bus..."
|
|
|
|
pid=$(cat $PIDFILE)
|
|
|
|
kill $pid 1> /dev/null 2> /dev/null
|
|
|
|
# Just in case:
|
|
|
|
killall dbus-daemon 1> /dev/null 2> /dev/null
|
|
|
|
rm -f $PIDFILE
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
reload() {
|
|
|
|
echo "Reloading system message bus configuration..."
|
|
|
|
if [ -e "$PIDFILE" ]; then
|
|
|
|
pid=$(cat $PIDFILE)
|
|
|
|
kill -HUP $pid
|
|
|
|
else
|
|
|
|
killall -HUP dbus-daemon
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
status() {
|
2012-09-26 03:10:42 +02:00
|
|
|
if ps -u messagebus -c | grep -wq dbus-daemon; then
|
|
|
|
echo "System dbus-daemon is running."
|
2009-08-26 17:00:38 +02:00
|
|
|
else
|
2012-09-26 03:10:42 +02:00
|
|
|
echo "System dbus-daemon is stopped."
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# See how we were called.
|
|
|
|
case "$1" in
|
|
|
|
start)
|
|
|
|
start
|
|
|
|
;;
|
|
|
|
stop)
|
|
|
|
stop
|
|
|
|
;;
|
|
|
|
restart)
|
|
|
|
stop
|
|
|
|
start
|
2012-09-26 03:10:42 +02:00
|
|
|
echo "You may need to restart your Window Manager to reconnect to the system dbus."
|
2009-08-26 17:00:38 +02:00
|
|
|
;;
|
|
|
|
reload)
|
|
|
|
reload
|
|
|
|
;;
|
|
|
|
status)
|
|
|
|
status
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo $"Usage: $0 {start|stop|restart|reload|status}"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|