libs/iwinfo: treat wifiX as wireless iface in dummy backend
[project/luci.git] / libs / iwinfo / src / dummy.lua
index 45bf047..290d077 100644 (file)
@@ -1,7 +1,10 @@
 module "iwinfo"
 
-function type()
-       return "dummy"
+function type(x)
+       if x:match("^wlan%d") or x:match("^wl%d") or
+          x:match("^wifi%d") or x:match("^ath%d") then
+               return "dummy"
+       end
 end
 
 dummy = {}