2006-02-02 20:35:36 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
#
|
|
|
|
|
# $FreeBSD$
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
# PROVIDE: hostapd
|
|
|
|
|
# REQUIRE: mountcritremote
|
|
|
|
|
# KEYWORD: nojail shutdown
|
|
|
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
|
|
name="hostapd"
|
2016-04-23 12:10:54 -04:00
|
|
|
desc="Authenticator for IEEE 802.11 networks"
|
2019-06-17 16:11:02 -04:00
|
|
|
command=${hostapd_program}
|
2006-02-02 20:35:36 -05:00
|
|
|
|
2013-06-26 00:00:52 -04:00
|
|
|
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
|
2006-02-02 20:35:36 -05:00
|
|
|
|
2007-11-14 16:19:15 -05:00
|
|
|
command_args="-P ${pidfile} -B ${conf_file}"
|
2006-02-02 20:35:36 -05:00
|
|
|
required_files="${conf_file}"
|
2008-04-20 16:37:21 -04:00
|
|
|
required_modules="wlan_xauth wlan_wep wlan_tkip wlan_ccmp"
|
2007-11-14 16:19:15 -05:00
|
|
|
extra_commands="reload"
|
2006-02-02 20:35:36 -05:00
|
|
|
|
|
|
|
|
load_rc_config ${name}
|
|
|
|
|
run_rc_command "$1"
|