aboutsummaryrefslogtreecommitdiff
path: root/devel/dbus/files/dbus.in
diff options
context:
space:
mode:
Diffstat (limited to 'devel/dbus/files/dbus.in')
-rw-r--r--devel/dbus/files/dbus.in34
1 files changed, 0 insertions, 34 deletions
diff --git a/devel/dbus/files/dbus.in b/devel/dbus/files/dbus.in
deleted file mode 100644
index a9b4ff8085fd..000000000000
--- a/devel/dbus/files/dbus.in
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-# PROVIDE: dbus
-# REQUIRE: DAEMON
-# KEYWORD: FreeBSD
-#
-# 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"