mirror of
https://git.freebsd.org/ports.git
synced 2025-04-30 10:36:38 -04:00
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
37 lines
592 B
Bash
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"
|