diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2006-02-15 04:29:02 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2006-02-15 04:29:02 +0000 |
commit | 03748f96080c86d679731666235e7c2073e5ed14 (patch) | |
tree | b85ac14b08997d8f019c65088138bfda111916e8 /devel/dbus/files/dbus.sh | |
parent | - update to 0.56 (diff) |
* Fix creation of the dbus system socket
* Update for the new USE_RC_SUBR world order
Notes
Notes:
svn path=/head/; revision=156082
Diffstat (limited to 'devel/dbus/files/dbus.sh')
-rw-r--r-- | devel/dbus/files/dbus.sh | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/devel/dbus/files/dbus.sh b/devel/dbus/files/dbus.sh deleted file mode 100644 index 704cb1d7eb92..000000000000 --- a/devel/dbus/files/dbus.sh +++ /dev/null @@ -1,33 +0,0 @@ -#!/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/${name}.pid" - -stop_postcmd=stop_postcmd - -stop_postcmd() -{ - rm -f $pidfile -} - - -load_rc_config ${name} -run_rc_command "$1" |