]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - src/initscripts/init.d/messagebus
Enabled force setting system time on boot.
[people/pmueller/ipfire-2.x.git] / src / initscripts / init.d / messagebus
1 #!/bin/sh
2 # Begin $rc_base/init.d/messagebus
3
4 # Based on sysklogd script from LFS-3.1 and earlier.
5 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
6
7 #$LastChangedBy: dnicholson $
8 #$Date: 2007-10-21 11:33:30 -0500 (Sun, 21 Oct 2007) $
9
10 . /etc/sysconfig/rc
11 . $rc_functions
12
13 pidfile=/var/run/dbus/pid
14 socket=/var/run/dbus/system_bus_socket
15
16 case "$1" in
17 start)
18 boot_mesg "Starting the D-Bus Messagebus Daemon..."
19 /usr/bin/dbus-uuidgen --ensure
20 loadproc -p "$pidfile" /usr/bin/dbus-daemon --system
21 ;;
22
23 stop)
24 boot_mesg "Stopping the D-Bus Messagebus Daemon..."
25 killproc -p "$pidfile" /usr/bin/dbus-daemon
26 [ $? -eq 0 ] && rm -f "$socket"
27 ;;
28
29 restart)
30 $0 stop
31 sleep 1
32 $0 start
33 ;;
34
35 status)
36 statusproc -p $pidfile /usr/bin/dbus-daemon
37 ;;
38
39 *)
40 echo "Usage: $0 {start|stop|restart|status}"
41 exit 1
42 ;;
43 esac
44
45 # End $rc_base/init.d/messagebus