Files
small-packages/luci-app-openvpn-server/luasrc/model/cbi/openvpn-server/openvpn-server_run_log.lua
T
2026-07-28 01:38:11 +08:00

14 lines
247 B
Lua
Executable File

local fs = require "nixio.fs"
local conffile = "/var/openvpn.log"
f = SimpleForm("logview")
t = f:field(TextValue, "conf")
t.rmempty = true
t.rows = 20
function t.cfgvalue()
return fs.readfile(conffile) or ""
end
t.readonly="readonly"
return f