mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
15 lines
254 B
Lua
15 lines
254 B
Lua
local fs = require "nixio.fs"
|
|
local conffile = "/tmp/familycloud.log"
|
|
|
|
f = SimpleForm("logview")
|
|
|
|
t = f:field(TextValue, "conf")
|
|
t.rmempty = true
|
|
t.rows = 15
|
|
function t.cfgvalue()
|
|
return fs.readfile(conffile) or ""
|
|
end
|
|
t.readonly = "readonly"
|
|
|
|
return f
|