summaryrefslogtreecommitdiffstats
path: root/config/determine_class.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-11-26 02:56:30 +0000
committerTed Trask <ttrask01@yahoo.com>2013-05-25 12:50:07 +0000
commit7794c065673caa79d66bb3ad9188a926dabeb797 (patch)
tree15d14c47f018131d8f3771a21e028fbe26c91825 /config/determine_class.lua
parent364caf9b075882bf5d0b8fed7990cc70cdf1a998 (diff)
downloadacf-provisioning-7794c065673caa79d66bb3ad9188a926dabeb797.tar.bz2
acf-provisioning-7794c065673caa79d66bb3ad9188a926dabeb797.tar.xz
Comment out references to APP
(cherry picked from commit a0edc5f3607d568e6c3ddc9d88b4eb9048cea81f)
Diffstat (limited to 'config/determine_class.lua')
-rw-r--r--config/determine_class.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/determine_class.lua b/config/determine_class.lua
index bf7a2fb..675e6e8 100644
--- a/config/determine_class.lua
+++ b/config/determine_class.lua
@@ -1,7 +1,7 @@
-- This is the script run to determine the device class from the HTTP user agent
local functions, agent, classes = ...
-APP.logevent("got to determine_class script")
+--APP.logevent("got to determine_class script")
local manufacture, model
@@ -16,7 +16,7 @@ elseif string.match(agent, "snom") then
model = string.match(agent, "snom(%d+)")
end
-APP.logevent("Found "..(manufacture or "").." model "..(model or ""))
+--APP.logevent("Found "..(manufacture or "").." model "..(model or ""))
if manufacture and model then
for i,c in ipairs(classes.value) do