4
Fork 0
CronosAgent/OpenWRT/model/cbi/cronosagent/configure.lua

24 lines
No EOL
918 B
Lua

local function handleAferCommit()
luci.sys.init.stop("cronosagent")
luci.sys.init.start("cronosagent")
end
local map = Map("cronosagent", "CronosAgent")
local section = map:section(TypedSection, "cronosagent", "Configuration")
local number = section:option(Value, "number", "Repeater ID", "DMR ID assigned to your repeater" )
local repeater = section:option(Value, "repeaterAddress", "Repeater Address", "Address of your KAIROS repeater" )
local server = section:option(Value, "serverAddress", "Server address", "Address of BrandMeister DMR Server")
local password = section:option(Value, "serverPassword", "Password", "Password to login to the server" )
number.datatype = "range(1,16777215)"
repeater.datatype = "ip4addr"
server.datatype = "host"
password.datatype = "string"
password.password = true
map.on_after_commit = handleAferCommit
return map