#!/bin/sh # # $FreeBSD: head/devel/dbus/files/dbus.in 551330 2020-10-03 16:45:44Z 0mp $ # # 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"