4
Fork 0

LuCI updated

This commit is contained in:
R3ABM Artem 2016-08-01 17:25:03 +04:00
parent 585c933667
commit 615740034e
2 changed files with 17 additions and 9 deletions

View file

@ -1,8 +1,9 @@
module("CronosAgent", package.seeall) module("cronosagent", package.seeall)
function index() function index()
entry({ "CronosAgent", "Configure" }, cbi("CronosAgent/configure"), "Configure", 10) entry({ "admin", "cronosagent" }, alias("admin", "cronosagent", "configure", "restart"), "CronosAgent")
entry({ "CronosAgent", "Restart" }, call("restartCronosAgent"), "Restart", 20) entry({ "admin", "cronosagent", "configure" }, cbi("cronosagent"), "Configure", 10)
entry({ "admin", "cronosagent", "restart" }, call("restartCronosAgent"), "Restart", 20)
end end
function restartCronosAgent() function restartCronosAgent()

View file

@ -1,8 +1,15 @@
local map = Map("cronosagent", "CronosAgent") local map = Map("cronosagent", "CronosAgent")
local section = map:section(TypedSection, "configuration") local section = map:section(TypedSection, "global", "", "Configuration")
section:option(Value, "number", "Repeater ID", "DMR ID assigned to your repeater") local number = section:option(Value, "number", "Repeater ID", "DMR ID assigned to your repeater" )
section:option(Value, "repeaterAddress", "Repeater Address", "Address of your KAIROS repeater") local repeater = section:option(Value, "repeaterAddress", "Repeater Address", "Address of your KAIROS repeater" )
section:option(Value, "serverAddress", "Server address", "Address of BrandMeister DMR Server") local server = section:option(Value, "serverAddress", "Server address", "Address of BrandMeister DMR Server")
section:option(Value, "serverPassword", "Password", "Password to login") local password = section:option(Value, "serverPassword", "Password", "Password to login" )
number.datatype = "range(1,16777215)"
repeater.datatype = "ip4addr"
server.datatype = "host"
password.datatype = "string"
password.password = true