freebsd-dev/etc/rc.d/wpa_supplicant
Sam Leffler 2a54bb549f o add rc.conf knobs to set the wpa_supplicant program, logging flags,
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
2008-04-08 23:12:15 +00:00

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"