summaryrefslogtreecommitdiff
path: root/init.d.misc/wpa_supplicant.in
blob: 3f9f1fa3b5b39403eca011065cf646d73704934f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!@PREFIX@/sbin/runscript
# Copyright 2009 Roy Marples <roy@marples.name>
# All rights reserved. Released under the 2-clause BSD license.

command=/usr/sbin/wpa_supplicant
wpa_supplicant_conf=/etc/wpa_supplicant.conf
wpa_supplicant_if=${wpa_supplicant_if:+-i}${wpa_supplicant_if}
command_args="-B -c${wpa_supplicant_conf} ${wpa_supplicant_if}"
name="WPA Supplicant Daemon"

depend()
{
	need localmount
	use logger
	after bootmisc modules
	before dns dhcpcd
}

find_wireless()
{
	local iface=

	for iface in /sys/class/net/*; do
		if [ -e "${iface}"/wireless ]; then
			echo "${iface##*/}"
			return 0
		fi
	done
	return 1
}

append_wireless()
{
	local iface=

	iface=$(find_wireless)
	if [ -n "${iface}" ]; then
		command_args="${command_args} -i${iface}"
	else
		eerror "Could not find a wireless interface"
	fi
}

start_pre()
{
	case " ${command_args}" in
	*" -i"*) ;;
	*) append_wireless;;
	esac
}