14dba5fc90
- Have both scripts automatically kldload ng_btsocket(4). I did not want to do it, but its easier for users and it seems other scripts do similar things; - Assign few variables after load_rc_config, so the /etc/rc.conf overrides actually work; MFC after: 1 week
31 lines
469 B
Bash
31 lines
469 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# 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"
|