Unbound: Basic LuCI to go with recent Unbound UCI (Oct2016)
[project/luci.git] / applications / luci-app-unbound / luasrc / controller / unbound.lua
diff --git a/applications/luci-app-unbound/luasrc/controller/unbound.lua b/applications/luci-app-unbound/luasrc/controller/unbound.lua
new file mode 100644 (file)
index 0000000..0a5abc5
--- /dev/null
@@ -0,0 +1,17 @@
+-- Copyright 2008 Steven Barth <steven@midlink.org>
+-- Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.controller.unbound", package.seeall)
+
+function index()
+       if not nixio.fs.access("/etc/config/unbound") then
+               return
+       end
+
+       local page
+
+       page = entry({"admin", "services", "unbound"}, cbi("unbound"), _("Recursive DNS"))
+       page.dependent = true
+end
+