694180d5f2dfea5c0ad60b2afa15f0b96939a938
[project/luci.git] / applications / luci-app-unbound / luasrc / model / cbi / unbound / manual.lua
1 -- Copyright 2016 Eric Luehrsen <ericluehrsen@hotmail.com>
2 -- Licensed to the public under the Apache License 2.0.
3
4 local filename = "/etc/unbound/unbound.conf"
5 local m2, s2, frm
6
7 m2 = SimpleForm("editing", nil)
8 m2.submit = translate("Save")
9 m2.reset = false
10
11 s2 = m2:section(SimpleSection, "Unbound Conf",
12   translatef("This allows you to edit raw %s which is copied to"
13   .. " /var/ for Unbound's base conf when you don't use UCI", filename))
14
15 frm = s2:option(TextValue, "data")
16 frm.datatype = "string"
17 frm.rows = 20
18
19
20 function frm.cfgvalue()
21   return nixio.fs.readfile(filename) or ""
22 end
23
24
25 function frm.write(self, section, data)
26   return nixio.fs.writefile(filename, data)
27 end
28
29
30 return m2
31