diff options
author | Ted Trask <ttrask01@yahoo.com> | 2014-08-19 00:18:48 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2014-08-19 00:18:48 +0000 |
commit | afd9299582949522d1344afc5beade4d6348ad47 (patch) | |
tree | 43cbbda4c817f59547c6d438eca5ea4368d97e75 /config/determine_class.lua | |
parent | bdc961508e79bbd6c13c8a74431fdff475cb16b5 (diff) | |
download | acf-provisioning-afd9299582949522d1344afc5beade4d6348ad47.tar.bz2 acf-provisioning-afd9299582949522d1344afc5beade4d6348ad47.tar.xz |
Add support for Cisco 2 Port Phone Adapter SPA112
Diffstat (limited to 'config/determine_class.lua')
-rw-r--r-- | config/determine_class.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/determine_class.lua b/config/determine_class.lua index 80830fa..5bc4ecd 100644 --- a/config/determine_class.lua +++ b/config/determine_class.lua @@ -11,6 +11,9 @@ if string.match(agent, "Polycom") then elseif string.match(agent, "Linksys") then manufacture = "Linksys" model = string.match(agent, "Linksys/(%P+)") +elseif string.match(agent, "Cisco") then + manufacture = "Cisco" + model = string.match(agent, "Cisco/(%P+)") elseif string.match(agent, "snom") then manufacture = "Snom" model = string.match(agent, "snom(%d+)") |