aboutsummaryrefslogtreecommitdiff
path: root/libexec/rc/rc.d/sdpd
diff options
context:
space:
mode:
Diffstat (limited to 'libexec/rc/rc.d/sdpd')
-rwxr-xr-xlibexec/rc/rc.d/sdpd27
1 files changed, 27 insertions, 0 deletions
diff --git a/libexec/rc/rc.d/sdpd b/libexec/rc/rc.d/sdpd
new file mode 100755
index 000000000000..a7bf51ecdc75
--- /dev/null
+++ b/libexec/rc/rc.d/sdpd
@@ -0,0 +1,27 @@
+#!/bin/sh
+#
+#
+
+# PROVIDE: sdpd
+# REQUIRE: DAEMON
+# BEFORE: LOGIN
+# KEYWORD: nojail shutdown
+
+. /etc/rc.subr
+
+name="sdpd"
+desc="Bluetooth Service Discovery Protocol daemon "
+command="/usr/sbin/${name}"
+rcvar="sdpd_enable"
+required_modules="ng_btsocket"
+
+load_rc_config $name
+control="${sdpd_control:-/var/run/sdp}"
+group="${sdpd_groupname:-nobody}"
+user="${sdpd_username:-nobody}"
+command_args="-c ${control} -g ${group} -u ${user}"
+
+# doesn't make sense to run in a svcj: nojail keyword
+sdpd_svcj="NO"
+
+run_rc_command "$1"