mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-07-30 19:01:54 +08:00
14 lines
264 B
Lua
Executable File
14 lines
264 B
Lua
Executable File
local fs = require "nixio.fs"
|
|
local conffile = "/etc/openvpn/openvpn-password.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 |