1 -- Copyright 2016 Eric Luehrsen <ericluehrsen@hotmail.com>
2 -- Licensed to the public under the Apache License 2.0.
4 local filename = "/etc/unbound/unbound_srv.conf"
7 m3 = SimpleForm("editing", nil)
8 m3.submit = translate("Save")
11 s3 = m3:section(SimpleSection, "Unbound Server Conf",
12 translatef("This allows you to edit %s which is copied to"
13 .. " /var/ and 'include:' within the 'server:' section.", filename))
15 frm = s3:option(TextValue, "data")
16 frm.datatype = "string"
20 function frm.cfgvalue()
21 return nixio.fs.readfile(filename) or ""
25 function frm.write(self, section, data)
26 return nixio.fs.writefile(filename, data)