#!/bin/sh # # $FreeBSD: head/etc/rc.d/hcsecd 152462 2005-11-15 20:36:26Z emax $ # # PROVIDE: hcsecd # REQUIRE: DAEMON # BEFORE: LOGIN # KEYWORD: nojail . /etc/rc.subr name="hcsecd" command="/usr/sbin/${name}" pidfile="/var/run/${name}.pid" rcvar=`set_rcvar` start_cmd="hcsecd_start" hcsecd_start() { kldload ng_btsocket > /dev/null 2>&1 ${command} ${command_args} } load_rc_config $name config="${hcsecd_config:-/etc/bluetooth/${name}.conf}" command_args="-f ${config}" required_files="${config}" run_rc_command "$1"