mirror of
https://github.com/opnsense/src.git
synced 2026-02-24 18:30:55 -05:00
When no interface is specified results in a syntax error in the rc
script. Only execute poststart when an interface has been specified.
PR: 263358
Submitted by: markj
Reported by: Joshua Kinard <freebsd@kumba.dev>
Fixes: 0da2c91e64
MFC after: 3 days
42 lines
762 B
Bash
Executable file
42 lines
762 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=${hostapd_program}
|
|
start_postcmd="hostapd_poststart"
|
|
|
|
hostapd_poststart() {
|
|
if [ -n "$ifn" ]; then
|
|
ifconfig ${ifn} down
|
|
sleep 2
|
|
ifconfig ${ifn} up
|
|
fi
|
|
}
|
|
|
|
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"
|