1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/devel/dbus/files/dbus.in
Koop Mast c6022ea918 Don't run dbus-uuidgen in post-install scripts. This has the effect that
there will be no dangeling /var/db/dbus/machine-id on package install [1].
Change the dbus start script to always call dbus-uuidgen --ensure. Which
only generates /var/db/dbus/machine-id if it is not present.
While here switch to USES=libtool.

Reported by:	poudriere in strict mode via miwi@ [1]
2014-03-06 20:39:24 +00:00

46 lines
694 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"
#
. /etc/rc.subr
. %%GNOME_SUBR%%
dbus_enable=${dbus_enable-${gnome_enable}}
dbus_flags=${dbus_flags-"--system"}
name=dbus
rcvar=dbus_enable
command="%%PREFIX%%/bin/dbus-daemon"
pidfile="/var/run/dbus/${name}.pid"
start_precmd="dbus_prestart"
stop_postcmd="dbus_poststop"
dbus_prestart()
{
if [ ! -d /var/db/dbus ]; then
mkdir -p /var/db/dbus
fi
%%PREFIX%%/bin/dbus-uuidgen --ensure
mkdir -p $(dirname $pidfile)
}
dbus_poststop()
{
rm -f $pidfile
}
load_rc_config ${name}
run_rc_command "$1"