wifi: properly handle iwconfig PATH differences

Most distributions keep it in /sbin, some in /usr/sbin, and somewhere
it is, in other places it is not, in the user's $PATH. Now a simple
discovery is done to handle this.
This commit is contained in:
Adrian C. (anrxc) 2010-03-05 00:24:43 +01:00
parent 4fa87fadff
commit 0ab8311b02
1 changed files with 12 additions and 2 deletions

View File

@ -5,8 +5,11 @@
-- {{{ Grab environment
local tonumber = tonumber
local io = { popen = io.popen }
local setmetatable = setmetatable
local io = {
open = io.open,
popen = io.popen
}
local string = {
find = string.find,
match = string.match
@ -31,7 +34,14 @@ local function worker(format, iface)
}
-- Get data from iwconfig where available
local f = io.popen("iwconfig " .. iface .. " 2>&1")
local iwconfig = "/sbin/iwconfig"
local f = io.open(iwconfig, "rb")
if not f then
iwconfig = "/usr/sbin/iwconfig"
else
f:close()
end
local f = io.popen(iwconfig .." ".. iface .. " 2>&1")
local iw = f:read("*all")
f:close()