lede/package/lean/luci-app-vlmcsd/luasrc/model/cbi/vlmcsd/config.lua
2021-11-27 03:02:19 +08:00

23 lines
519 B
Lua

m = Map("vlmcsd")
s = m:section(TypedSection, "vlmcsd")
s.addremove = false
s.anonymous = true
config = s:option(TextValue, "config")
config.description = translate("This file is /etc/vlmcsd/vlmcsd.ini.")
config.template = "cbi/tvalue"
config.rows = 25
config.wrap = "off"
function config.cfgvalue(self, section)
return nixio.fs.readfile("/etc/vlmcsd/vlmcsd.ini")
end
function config.write(self, section, value)
value = value:gsub("\r\n?", "\n")
nixio.fs.writefile("/etc/vlmcsd/vlmcsd.ini", value)
end
return m