2013-12-22 02:21:11 +05:30
|
|
|
#!@SBINDIR@/openrc-run
|
2015-12-05 04:22:19 +05:30
|
|
|
# Copyright (c) 2007-2015 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
2021-12-21 06:37:00 +05:30
|
|
|
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
|
2015-12-05 04:22:19 +05:30
|
|
|
#
|
|
|
|
# This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
# the LICENSE file found in the top-level directory of this
|
2021-12-21 06:37:00 +05:30
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/HEAD/LICENSE
|
2015-12-05 04:22:19 +05:30
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
2009-03-06 02:11:07 +05:30
|
|
|
|
|
|
|
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-07-01 04:37:32 +05:30
|
|
|
keyword -shutdown
|
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-07-01 04:54:08 +05:30
|
|
|
if [ -e "$iface"/wireless -o \
|
|
|
|
-e "$iface"/phy80211 ]
|
|
|
|
then
|
2009-04-18 06:26:26 +05:30
|
|
|
echo "${iface##*/}"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
;;
|
2016-10-14 08:39:22 +05:30
|
|
|
FreeBSD)
|
|
|
|
for iface in $(sysctl -b net.wlan.devices 2>/dev/null); do
|
|
|
|
echo "${iface##*/}"
|
|
|
|
done
|
|
|
|
;;
|
2009-04-18 06:26:26 +05:30
|
|
|
*)
|
|
|
|
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
|
2011-01-17 15:19:07 +05:30
|
|
|
|
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
|
|
|
|
}
|