c20bcaca65
and config file o change default logging options from -q to -s (log to syslog); this is currently broken for boot-time startup as syslogd is started too late but that'll be dealt with separately MFC after: 2 weeks
55 lines
778 B
Bash
55 lines
778 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: wpa_supplicant
|
|
# REQUIRE: mountcritremote
|
|
# KEYWORD: nojail nostart
|
|
|
|
. /etc/rc.subr
|
|
. /etc/network.subr
|
|
|
|
name="wpa_supplicant"
|
|
rcvar=
|
|
|
|
ifn="$2"
|
|
if [ -z "$ifn" ]; then
|
|
return 1
|
|
fi
|
|
|
|
is_wired_interface()
|
|
{
|
|
media=`ifconfig $1 2>/dev/null | while read line; do
|
|
case "$line" in
|
|
*media:?Ethernet*)
|
|
echo Ethernet
|
|
;;
|
|
esac
|
|
done`
|
|
test "$media" = "Ethernet"
|
|
}
|
|
|
|
case ${ifn} in
|
|
ndis*)
|
|
driver="ndis"
|
|
;;
|
|
*)
|
|
if is_wired_interface ${ifn} ; then
|
|
driver="wired"
|
|
else
|
|
driver="bsd"
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
load_rc_config $name
|
|
|
|
command=${wpa_supplicant_program}
|
|
conf_file=${wpa_supplicant_conf_file}
|
|
pidfile="/var/run/${name}/${ifn}.pid"
|
|
command_args="-B -i $ifn -c $conf_file -D $driver -P $pidfile"
|
|
required_files=$conf_file
|
|
|
|
run_rc_command "$1"
|