modules/admin-full: ... and another issue, also remove wifi up workaround, its done by "ifup" now

This commit is contained in:
Jo-Philipp Wich 2011-09-25 23:08:47 +00:00
parent 8eb9335413
commit 730b2b0d07
2 changed files with 1 additions and 18 deletions

View file

@ -282,23 +282,6 @@ function iface_reconnect()
local net = netmd:get_network(iface)
if net then
local ifn
for _, ifn in ipairs(net:get_interfaces()) do
local wnet = ifn:get_wifinet()
if wnet then
local wdev = wnet:get_device()
if wdev then
luci.sys.call(
"env -i /sbin/wifi up %q >/dev/null 2>/dev/null"
% wdev:name()
)
luci.http.status(200, "Reconnected")
return
end
end
end
luci.sys.call("env -i /sbin/ifup %q >/dev/null 2>/dev/null" % iface)
luci.http.status(200, "Reconnected")
return

View file

@ -157,7 +157,7 @@ function ifname_single.write(self, s, val)
local new_ifs = { }
local old_ifs = { }
for _, i in ipairs(n:get_interfaces()) do
for _, i in ipairs(n:get_interfaces() or { n:get_interface() }) do
old_ifs[#old_ifs+1] = i:name()
end