summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2008-12-16 21:07:03 +0000
committerTed Trask <ttrask01@yahoo.com>2008-12-16 21:07:03 +0000
commit0d72ca6d1fe1af7f52b3b047a8fcc42caaa97c24 (patch)
treef56cb7e16f2e792f1c69a95cfa7ea2d73a914a07
parent76b0d74e7bf922b06749927eaca7dafbdd19f8d3 (diff)
downloadacf-dnsmasq-0d72ca6d1fe1af7f52b3b047a8fcc42caaa97c24.tar.bz2
acf-dnsmasq-0d72ca6d1fe1af7f52b3b047a8fcc42caaa97c24.tar.xz
Removed debug message from dnsmasq.
git-svn-id: svn://svn.alpinelinux.org/acf/dnsmasq/trunk@1636 ab2d0c66-481e-0410-8bed-d214d4d58bed
-rw-r--r--dnsmasq-model.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/dnsmasq-model.lua b/dnsmasq-model.lua
index 519fa89..3625cf8 100644
--- a/dnsmasq-model.lua
+++ b/dnsmasq-model.lua
@@ -195,9 +195,7 @@ function getconfig()
output.dhcp_host = cfe({ type="list", value=conf["dhcp-host"] or {}, label="DHCP Host Parameter", descr="List of per host parameters for the DHCP server. See dnsmasq documentation." })
output.dhcp_option = cfe({ type="list", value=conf["dhcp-option"] or {}, label="DHCP Option", descr="List of different or extra options to DHCP clients. See dnsmasq documentation." })
output.mx_host = cfe({ type="list", value=conf["mx-host"] or {}, label="MX Record", descr="List of MX records 'mx_name,hostname'." })
-
- -- APP.logevent(html.cfe_unpack(output))
-
+
return cfe({ type="group", value=output, label="DNS Masq Config" })
end