mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-18 08:02:48 +00:00
70eb7f5569
* Create the directory to hold the dbus pidfile before starting as MFS-mounted /var's will not have this directory [1] PR: 98580 [1]
40 lines
551 B
Bash
40 lines
551 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# PROVIDE: dbus
|
|
# REQUIRE: DAEMON
|
|
#
|
|
# Add the following lines to /etc/rc.conf to enable the D-BUS messaging system:
|
|
#
|
|
# dbus_enable="YES"
|
|
#
|
|
|
|
dbus_enable=${dbus_enable-"NO"}
|
|
dbus_flags=${dbus_flags-"--system"}
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name=dbus
|
|
rcvar=`set_rcvar`
|
|
|
|
command="%%PREFIX%%/bin/dbus-daemon"
|
|
pidfile="/var/run/dbus/${name}.pid"
|
|
|
|
start_precmd="dbus_prestart"
|
|
stop_postcmd="dbus_poststop"
|
|
|
|
dbus_prestart()
|
|
{
|
|
mkdir -p $(dirname $pidfile)
|
|
}
|
|
|
|
dbus_poststop()
|
|
{
|
|
rm -f $pidfile
|
|
}
|
|
|
|
|
|
load_rc_config ${name}
|
|
run_rc_command "$1"
|