summaryrefslogtreecommitdiffstats
path: root/meta/packages/dbus/dbus-1.1.4/dbus-1.init
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/dbus/dbus-1.1.4/dbus-1.init')
-rw-r--r--meta/packages/dbus/dbus-1.1.4/dbus-1.init110
1 files changed, 110 insertions, 0 deletions
diff --git a/meta/packages/dbus/dbus-1.1.4/dbus-1.init b/meta/packages/dbus/dbus-1.1.4/dbus-1.init
new file mode 100644
index 0000000000..0725083c69
--- /dev/null
+++ b/meta/packages/dbus/dbus-1.1.4/dbus-1.init
@@ -0,0 +1,110 @@
1#! /bin/sh
2# -*- coding: utf-8 -*-
3# Debian init.d script for D-BUS
4# Copyright © 2003 Colin Walters <walters@debian.org>
5
6set -e
7
8DAEMON=/usr/bin/dbus-daemon
9NAME=dbus
10DAEMONUSER=messagebus
11PIDDIR=/var/run/dbus
12PIDFILE=$PIDDIR/pid
13UUIDDIR=/var/lib/dbus
14DESC="system message bus"
15EVENTDIR=/etc/dbus-1/event.d
16
17test -x $DAEMON || exit 0
18
19# Source defaults file; edit that file to configure this script.
20ENABLED=1
21PARAMS=""
22if [ -e /etc/default/dbus ]; then
23 . /etc/default/dbus
24fi
25
26test "$ENABLED" != "0" || exit 0
27
28start_it_up()
29{
30 if [ ! -d $PIDDIR ]; then
31 mkdir -p $PIDDIR
32 chown $DAEMONUSER $PIDDIR
33 chgrp $DAEMONUSER $PIDDIR
34 fi
35 if [ -e $PIDFILE ]; then
36 PIDDIR=/proc/$(cat $PIDFILE)
37 if [ -d ${PIDDIR} -a "$(readlink -f ${PIDDIR}/exe)" = "${DAEMON}" ]; then
38 echo "$DESC already started; not starting."
39 else
40 echo "Removing stale PID file $PIDFILE."
41 rm -f $PIDFILE
42 fi
43 fi
44
45 if [ ! -d $UUIDDIR ]; then
46 mkdir -p $UUIDDIR
47 chown $DAEMONUSER $UUIDDIR
48 chgrp $DAEMONUSER $UUIDDIR
49 fi
50
51 dbus-uuidgen --ensure
52
53 echo -n "Starting $DESC: "
54 start-stop-daemon --start --quiet --pidfile $PIDFILE \
55 --user $DAEMONUSER --exec $DAEMON -- --system $PARAMS
56 echo "$NAME."
57 if [ -d $EVENTDIR ]; then
58 run-parts --arg=start $EVENTDIR
59 fi
60}
61
62shut_it_down()
63{
64 if [ -d $EVENTDIR ]; then
65 # TODO: --reverse when busybox supports it
66 run-parts --arg=stop $EVENTDIR
67 fi
68 echo -n "Stopping $DESC: "
69 start-stop-daemon --stop --quiet --pidfile $PIDFILE \
70 --user $DAEMONUSER
71 # We no longer include these arguments so that start-stop-daemon
72 # can do its job even given that we may have been upgraded.
73 # We rely on the pidfile being sanely managed
74 # --exec $DAEMON -- --system $PARAMS
75 echo "$NAME."
76 rm -f $PIDFILE
77}
78
79reload_it()
80{
81 echo -n "Reloading $DESC config: "
82 dbus-send --print-reply --system --type=method_call \
83 --dest=org.freedesktop.DBus \
84 / org.freedesktop.DBus.ReloadConfig > /dev/null
85 # hopefully this is enough time for dbus to reload it's config file.
86 echo "done."
87}
88
89case "$1" in
90 start)
91 start_it_up
92 ;;
93 stop)
94 shut_it_down
95 ;;
96 reload|force-reload)
97 reload_it
98 ;;
99 restart)
100 shut_it_down
101 sleep 1
102 start_it_up
103 ;;
104 *)
105 echo "Usage: /etc/init.d/$NAME {start|stop|restart|reload|force-reload}" >&2
106 exit 1
107 ;;
108esac
109
110exit 0