0c30639059
cases. So we get rid of quite a few lines of duplicated code.
25 lines
389 B
Bash
25 lines
389 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`
|
|
required_modules="ng_btsocket"
|
|
|
|
load_rc_config $name
|
|
config="${hcsecd_config:-/etc/bluetooth/${name}.conf}"
|
|
command_args="-f ${config}"
|
|
required_files="${config}"
|
|
|
|
run_rc_command "$1"
|