b45e4c11da
- 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
470 B
Bash
31 lines
470 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: sdpd
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: nojail
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="sdpd"
|
|
command="/usr/sbin/${name}"
|
|
rcvar=`set_rcvar`
|
|
start_cmd="sdpd_start"
|
|
|
|
sdpd_start()
|
|
{
|
|
kldload ng_btsocket > /dev/null 2>&1
|
|
${command} ${command_args}
|
|
}
|
|
|
|
load_rc_config $name
|
|
control="${sdpd_control:-/var/run/sdp}"
|
|
group="${sdpd_group:-nobody}"
|
|
user="${sdpd_user:-nobody}"
|
|
command_args="-c ${control} -g ${group} -u ${user}"
|
|
|
|
run_rc_command "$1"
|