From ee94e970f43e462f6ad44cbe9ede26ca2471a894 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Thu, 13 Oct 2011 18:44:51 +0000 Subject: Add support for unconfigured Linksys device --- config/determine_class.lua | 3 +++ 1 file changed, 3 insertions(+) (limited to 'config') diff --git a/config/determine_class.lua b/config/determine_class.lua index df8f5c2..297422d 100644 --- a/config/determine_class.lua +++ b/config/determine_class.lua @@ -8,6 +8,9 @@ local manufacture, model if string.match(agent, "Polycom") then manufacture = "Polycom" model = string.match(agent, "Polycom[^%s%d]+(%d+)") +elseif string.match(agent, "Linksys") then + manufacture = "Linksys" + model = string.match(agent, "Linksys/(%P+)") end APP.logevent("Found "..(manufacture or "").." model "..(model or "")) -- cgit v1.2.3