6fa8790c31
The reasons for this are forward looking to pkgbase: * /sbin/init is a special binary; try not to replace it with every package update because an rc script was touched. (a follow-up commit will make init its own package) * having rc in its own place will allow more easy replacement of the rc framework with alternatives, such as openrc. Discussed with: brd (during BSDCam), kmoore Requested by: cem, bz PR: 231522 Approved by: re (gjb)
34 lines
622 B
Bash
Executable File
34 lines
622 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: hostapd
|
|
# REQUIRE: mountcritremote
|
|
# KEYWORD: nojail shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="hostapd"
|
|
desc="Authenticator for IEEE 802.11 networks"
|
|
command="/usr/sbin/${name}"
|
|
|
|
ifn="$2"
|
|
if [ -z "$ifn" ]; then
|
|
rcvar="hostapd_enable"
|
|
conf_file="/etc/${name}.conf"
|
|
pidfile="/var/run/${name}.pid"
|
|
else
|
|
rcvar=
|
|
conf_file="/etc/${name}-${ifn}.conf"
|
|
pidfile="/var/run/${name}-${ifn}.pid"
|
|
fi
|
|
|
|
command_args="-P ${pidfile} -B ${conf_file}"
|
|
required_files="${conf_file}"
|
|
required_modules="wlan_xauth wlan_wep wlan_tkip wlan_ccmp"
|
|
extra_commands="reload"
|
|
|
|
load_rc_config ${name}
|
|
run_rc_command "$1"
|