diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-06-17 09:16:42 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-06-17 09:31:15 +0000 |
commit | 3698511c9263be69e0a7ea16b135d75438e63601 (patch) | |
tree | 68668e94eaac64bcbb97c8f3dda853cc2db87f25 /main/wpa_supplicant/wpa_supplicant.initd | |
parent | cb8ff12c4ccb6c236d8da799a8c82c4413f572a7 (diff) | |
download | aports-3698511c9263be69e0a7ea16b135d75438e63601.tar.bz2 aports-3698511c9263be69e0a7ea16b135d75438e63601.tar.xz |
main/wpa_supplicant: upgrade to 0.7.2
Diffstat (limited to 'main/wpa_supplicant/wpa_supplicant.initd')
-rw-r--r-- | main/wpa_supplicant/wpa_supplicant.initd | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/main/wpa_supplicant/wpa_supplicant.initd b/main/wpa_supplicant/wpa_supplicant.initd new file mode 100644 index 000000000..8429a3733 --- /dev/null +++ b/main/wpa_supplicant/wpa_supplicant.initd @@ -0,0 +1,70 @@ +#!/sbin/runscript +# Copyright (c) 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/wpa_supplicant.conf} +wpa_supplicant_if=${wpa_supplicant_if:+-i}$wpa_supplicant_if +command_args="$wpa_supplicant_args -B -c$wpa_supplicant_conf $wpa_supplicant_if" +name="WPA Supplicant Daemon" + +depend() +{ + need localmount + use logger + after bootmisc modules + before dns dhcpcd net + keyword -shutdown +} + +find_wireless() +{ + local iface= + + case "$RC_UNAME" in + Linux) + for iface in /sys/class/net/*; do + if [ -e "$iface"/wireless -o \ + -e "$iface"/phy80211 ] + then + 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 + + return 1 +} + +append_wireless() +{ + local iface= i= + + iface=$(find_wireless) + if [ -n "$iface" ]; then + for i in $iface; do + command_args="$command_args -i$i" + done + else + eerror "Could not find a wireless interface" + fi +} + +start_pre() +{ + case " $command_args" in + *" -i"*) ;; + *) append_wireless;; + esac +} |