summaryrefslogtreecommitdiffstats
path: root/squid-model.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-10-27 02:36:59 +0000
committerTed Trask <ttrask01@yahoo.com>2012-10-27 02:36:59 +0000
commit431ddffe689166eecf58b990bc938fa151b63de1 (patch)
treee419804ae89a8daa96a83fd1409ddda1727b4f8a /squid-model.lua
parent83556510c6c49cbe3b300796bffecadd8da3f77c (diff)
downloadacf-squid-431ddffe689166eecf58b990bc938fa151b63de1.tar.bz2
acf-squid-431ddffe689166eecf58b990bc938fa151b63de1.tar.xz
Removed unneeded views by updating CFE for autoview
Diffstat (limited to 'squid-model.lua')
-rw-r--r--squid-model.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/squid-model.lua b/squid-model.lua
index 525f034..2529e09 100644
--- a/squid-model.lua
+++ b/squid-model.lua
@@ -176,10 +176,10 @@ end
read_config = function()
local retval = {
- httpports = { type="list", value={}, label="HTTP Ports", descr="List of port, IP:port, or hostname:port entries that Squid will listen on" },
- accesslog = { type="boolean", value=false, label="Log Access" },
- diskcache = { type="boolean", value=false, label="Disk Cache" },
- authmethod = { type="multi", value={}, label="Authentication Methods", option={"negotiate", "ntlm", "digest", "basic"} },
+ httpports = { type="list", value={}, label="HTTP Ports", descr="List of port, IP:port, or hostname:port entries that Squid will listen on", seq=0 },
+ accesslog = { type="boolean", value=false, label="Log Access", seq=1 },
+ diskcache = { type="boolean", value=false, label="Disk Cache", seq=2 },
+ authmethod = { type="multi", value={}, label="Authentication Methods", option={"negotiate", "ntlm", "digest", "basic"}, seq=3 },
}
configcontent = configcontent or fs.read_file(squidconf) or ""