2007-01-16 00:08:38 +01:00
|
|
|
#!/bin/sh
|
|
|
|
# Author: Timo Hoenig <thoenig@suse.de>
|
|
|
|
#
|
|
|
|
# /etc/init.d/dbus
|
|
|
|
#
|
|
|
|
### BEGIN INIT INFO
|
|
|
|
# Provides: dbus
|
2007-06-20 01:16:44 +02:00
|
|
|
# Required-Start: $local_fs
|
2007-01-16 00:08:38 +01:00
|
|
|
# Should-Start:
|
2008-08-22 20:55:28 +02:00
|
|
|
# Required-Stop: $local_fs
|
2007-01-16 00:08:38 +01:00
|
|
|
# Should-Stop:
|
|
|
|
# Default-Start: 2 3 5
|
|
|
|
# Default-Stop:
|
|
|
|
# Short-Description: D-Bus is a message bus system for applications to talk to one another.
|
|
|
|
# Description: D-Bus supplies both a system daemon and a per-user-login-session daemon.
|
|
|
|
# Also, the message bus is built on top of a general one-to-one message
|
|
|
|
# passing framework, which can be used by any two apps to communicate
|
|
|
|
# directly (without going through the message bus daemon).
|
|
|
|
### END INIT INFO
|
|
|
|
|
2007-07-31 02:53:46 +02:00
|
|
|
DBUS_DAEMON_BIN=/bin/dbus-daemon
|
2007-01-16 00:08:38 +01:00
|
|
|
test -x $DBUS_DAEMON_BIN || exit 5
|
|
|
|
|
|
|
|
DBUS_DAEMON_PARAMETER="--system";
|
2013-01-25 09:41:21 +01:00
|
|
|
DBUS_DAEMON_PID_DIR="/run/dbus"
|
2009-04-02 17:30:12 +02:00
|
|
|
DBUS_DAEMON_PID=$DBUS_DAEMON_PID_DIR/pid
|
2007-01-16 00:08:38 +01:00
|
|
|
|
2009-04-02 17:30:12 +02:00
|
|
|
DBUS_MACHINE_ID_DIR="/var/lib/dbus"
|
|
|
|
DBUS_MACHINE_ID=$DBUS_MACHINE_ID_DIR/machine-id
|
2007-01-16 00:08:38 +01:00
|
|
|
|
2007-07-31 02:53:46 +02:00
|
|
|
DBUS_UUIIDGEN_BIN=/bin/dbus-uuidgen
|
2007-01-16 00:08:38 +01:00
|
|
|
|
2010-10-15 09:27:43 +02:00
|
|
|
CONSOLEKIT_DAEMON_BIN="/usr/sbin/console-kit-daemon"
|
2013-01-25 09:41:21 +01:00
|
|
|
CONSOLEKIT_PID_DIR="/run/ConsoleKit"
|
2010-10-15 09:27:43 +02:00
|
|
|
CONSOLEKIT_PID=$CONSOLEKIT_PID_DIR/pid
|
|
|
|
|
2007-01-16 00:08:38 +01:00
|
|
|
# Source LSB init functions
|
|
|
|
# providing start_daemon, killproc, pidofproc,
|
|
|
|
# log_success_msg, log_failure_msg and log_warning_msg.
|
|
|
|
# This is currently not used by UnitedLinux based distributions and
|
|
|
|
# not needed for init scripts for UnitedLinux only. If it is used,
|
|
|
|
# the functions from rc.status should not be sourced or used.
|
|
|
|
#. /lib/lsb/init-functions
|
|
|
|
|
|
|
|
. /etc/rc.status
|
|
|
|
|
|
|
|
# Reset status of this service
|
|
|
|
rc_reset
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
start)
|
2009-04-02 17:30:12 +02:00
|
|
|
if [ -x $DBUS_UUIIDGEN_BIN -a ! -e $DBUS_MACHINE_ID ] ; then
|
|
|
|
if [ ! -d $DBUS_MACHINE_ID_DIR ] ; then
|
|
|
|
mkdir -p $DBUS_MACHINE_ID_DIR
|
|
|
|
chown messagebus:messagebus $DBUS_MACHINE_ID_DIR
|
|
|
|
fi
|
2007-01-16 00:08:38 +01:00
|
|
|
echo -n "Creating universally unique ID..."
|
2009-04-02 17:30:12 +02:00
|
|
|
$DBUS_UUIIDGEN_BIN --ensure
|
|
|
|
rc_status -v
|
2007-01-16 00:08:38 +01:00
|
|
|
fi
|
2009-04-02 17:30:12 +02:00
|
|
|
if checkproc -k -p $DBUS_DAEMON_PID $DBUS_DAEMON_BIN ; then
|
|
|
|
echo "D-Bus already started. Not starting."
|
|
|
|
exit 0
|
2007-01-16 00:08:38 +01:00
|
|
|
fi
|
2009-04-02 17:30:12 +02:00
|
|
|
if [ ! -d $DBUS_DAEMON_PID_DIR ] ; then
|
|
|
|
mkdir -p $DBUS_DAEMON_PID_DIR
|
|
|
|
chown messagebus:messagebus $DBUS_DAEMON_PID_DIR
|
|
|
|
fi
|
|
|
|
if [ -e $DBUS_DAEMON_PID ] ; then
|
|
|
|
echo "Removing stale PID file $DBUS_DAEMON_PID."
|
|
|
|
rm -f $DBUS_DAEMON_PID
|
|
|
|
fi
|
|
|
|
echo -n "Starting D-Bus daemon"
|
|
|
|
start_daemon -f $DBUS_DAEMON_BIN $DBUS_DAEMON_PARAMETER
|
2007-01-16 00:08:38 +01:00
|
|
|
rc_status -v
|
|
|
|
;;
|
|
|
|
stop)
|
|
|
|
echo -n "Shutting down D-Bus daemon"
|
2010-10-15 09:27:43 +02:00
|
|
|
if [ -x $CONSOLEKIT_DAEMON_BIN ] ; then
|
|
|
|
killproc -p $CONSOLEKIT_PID -TERM $CONSOLEKIT_DAEMON_BIN
|
|
|
|
fi
|
2007-01-16 00:08:38 +01:00
|
|
|
killproc -p $DBUS_DAEMON_PID -TERM $DBUS_DAEMON_BIN
|
|
|
|
rc_status -v
|
|
|
|
;;
|
|
|
|
try-restart)
|
|
|
|
$0 status >/dev/null && $0 restart
|
|
|
|
rc_status
|
|
|
|
;;
|
|
|
|
restart)
|
|
|
|
$0 stop
|
|
|
|
$0 start
|
|
|
|
rc_status
|
|
|
|
;;
|
|
|
|
force-reload)
|
2009-10-02 23:24:19 +02:00
|
|
|
$0 reload
|
2007-01-16 00:08:38 +01:00
|
|
|
rc_status
|
|
|
|
;;
|
|
|
|
reload)
|
2009-10-02 23:24:19 +02:00
|
|
|
echo -n "Reload service D-Bus daemon"
|
|
|
|
dbus-send --type=method_call --system --dest=org.freedesktop.DBus / org.freedesktop.DBus.ReloadConfig
|
2007-01-16 00:08:38 +01:00
|
|
|
rc_status -v
|
|
|
|
;;
|
|
|
|
status)
|
|
|
|
echo -n "Checking for service D-Bus daemon"
|
|
|
|
checkproc -k -p $DBUS_DAEMON_PID $DBUS_DAEMON_BIN
|
|
|
|
if [ $? -eq 7 ]; then
|
|
|
|
rc_failed 3
|
2009-04-02 17:30:12 +02:00
|
|
|
fi
|
2007-01-16 00:08:38 +01:00
|
|
|
rc_status -v
|
|
|
|
;;
|
|
|
|
probe)
|
|
|
|
## Optional: Probe for the necessity of a reload, print out the
|
|
|
|
## argument to this init script which is required for a reload.
|
|
|
|
## Note: probe is not (yet) part of LSB (as of 1.2)
|
2013-01-25 09:41:21 +01:00
|
|
|
# test /etc/FOO/FOO.conf -nt /run/FOO.pid && echo reload
|
2007-01-16 00:08:38 +01:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Usage: $0 {start|stop|status|try-restart|restart|force-reload|reload|probe}"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
rc_exit
|
|
|
|
|