blob: 7fb087e2bdfcd9d8427809dddba78a6747041900 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#!/bin/sh
# PROVIDE: dbus
# REQUIRE: DAEMON ldconfig
#
# Add the following lines to /etc/rc.conf to enable the D-BUS messaging system:
#
# dbus_enable="YES"
#
. /etc/rc.subr
: ${dbus_enable=${gnome_enable-NO}} ${dbus_flags="--system"}
name=dbus
rcvar=dbus_enable
command="%%PREFIX%%/bin/dbus-daemon"
pidfile="/var/run/dbus/pid"
start_precmd="dbus_prestart"
stop_postcmd="dbus_poststop"
dbus_prestart()
{
%%PREFIX%%/bin/dbus-uuidgen --ensure
mkdir -p /var/run/dbus
}
dbus_poststop()
{
rm -f $pidfile
}
load_rc_config ${name}
run_rc_command "$1"
|