ports/devel/dbus/files/dbus.in
Andrey Zakharchenko 83d457310e devel/dbus: create directory for machine-id
Create the directory where dbus-uuidgen is *going* to write
the machine-id, just in case -- might affect only older FreeBSD
versions. dbus-uuidgen doesn't create intermediate directories
when given an explicit path either, so it does need to be done
by the environment.

(I'm purposely **not** also tackling other dbus-uuidgen issues,
those are in different PRs with different assignees)

PR:		225098
Reported by:	Andrey Zakharchenko
2021-07-02 00:16:26 +02:00

37 lines
592 B
Bash

#!/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()
{
mkdir -p /var/lib/dbus
%%PREFIX%%/bin/dbus-uuidgen --ensure
mkdir -p /var/run/dbus
}
dbus_poststop()
{
rm -f $pidfile
}
load_rc_config ${name}
run_rc_command "$1"