2009-03-06 02:11:07 +05:30
|
|
|
#!@PREFIX@/sbin/runscript
|
2009-05-01 19:41:40 +05:30
|
|
|
# Copyright (c) 2009 Roy Marples <roy@marples.name>
|
2009-03-06 02:11:07 +05:30
|
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
|
|
|
|
|
|
|
command=/usr/sbin/wpa_supplicant
|
2009-05-06 21:17:37 +05:30
|
|
|
: ${wpa_supplicant_conf:=/etc/wpa_supplicant.conf}
|
2009-04-27 17:36:54 +05:30
|
|
|
wpa_supplicant_if=${wpa_supplicant_if:+-i}$wpa_supplicant_if
|
2009-05-06 21:17:37 +05:30
|
|
|
command_args="$wpa_supplicant_args -B -c$wpa_supplicant_conf $wpa_supplicant_if"
|
2009-03-06 02:11:07 +05:30
|
|
|
name="WPA Supplicant Daemon"
|
|
|
|
|
|
|
|
depend()
|
|
|
|
{
|
|
|
|
need localmount
|
|
|
|
use logger
|
|
|
|
after bootmisc modules
|
2009-04-17 02:32:46 +05:30
|
|
|
before dns dhcpcd net
|
2009-04-27 17:36:54 +05:30
|
|
|
keyword noshutdown
|
2009-03-06 02:11:07 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
find_wireless()
|
|
|
|
{
|
|
|
|
local iface=
|
|
|
|
|
2009-04-27 17:36:54 +05:30
|
|
|
case "$RC_UNAME" in
|
2009-04-18 06:26:26 +05:30
|
|
|
Linux)
|
|
|
|
for iface in /sys/class/net/*; do
|
2009-04-27 17:36:54 +05:30
|
|
|
if [ -e "$iface"/wireless ]; then
|
2009-04-18 06:26:26 +05:30
|
|
|
echo "${iface##*/}"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
for iface in /dev/net/* $(ifconfig -l 2>/dev/null); do
|
|
|
|
if ifconfig "${iface##*/}" 2>/dev/null | \
|
|
|
|
grep -q "[ ]*ssid "
|
|
|
|
then
|
|
|
|
echo "${iface##*/}"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2009-03-06 02:11:07 +05:30
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
append_wireless()
|
|
|
|
{
|
2009-05-06 21:17:37 +05:30
|
|
|
local iface= i=
|
2009-03-06 02:11:07 +05:30
|
|
|
|
|
|
|
iface=$(find_wireless)
|
2009-04-27 17:36:54 +05:30
|
|
|
if [ -n "$iface" ]; then
|
2009-05-06 21:17:37 +05:30
|
|
|
for i in $iface; do
|
|
|
|
command_args="$command_args -i$i"
|
|
|
|
done
|
2009-03-06 02:11:07 +05:30
|
|
|
else
|
|
|
|
eerror "Could not find a wireless interface"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
start_pre()
|
|
|
|
{
|
2009-04-27 17:36:54 +05:30
|
|
|
case " $command_args" in
|
2009-03-06 02:11:07 +05:30
|
|
|
*" -i"*) ;;
|
|
|
|
*) append_wireless;;
|
|
|
|
esac
|
|
|
|
}
|