Clean up
This commit is contained in:
parent
58afe56725
commit
1df172463e
2 changed files with 4 additions and 9 deletions
|
@ -7,7 +7,6 @@ function index()
|
||||||
end
|
end
|
||||||
|
|
||||||
function restartCronosAgent()
|
function restartCronosAgent()
|
||||||
luci.sys.init.stop("cronosagent")
|
luci.sys.call("/etc/init.d/cronosagent restart")
|
||||||
luci.sys.init.start("cronosagent")
|
|
||||||
luci.http.write("Done!")
|
luci.http.write("Done!")
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,9 +1,4 @@
|
||||||
|
|
||||||
local function handleAferCommit()
|
|
||||||
luci.sys.init.stop("cronosagent")
|
|
||||||
luci.sys.init.start("cronosagent")
|
|
||||||
end
|
|
||||||
|
|
||||||
local map = Map("cronosagent", "CronosAgent")
|
local map = Map("cronosagent", "CronosAgent")
|
||||||
local section = map:section(TypedSection, "cronosagent", "Configuration")
|
local section = map:section(TypedSection, "cronosagent", "Configuration")
|
||||||
|
|
||||||
|
@ -19,6 +14,7 @@ server.datatype = "host"
|
||||||
password.datatype = "string"
|
password.datatype = "string"
|
||||||
password.password = true
|
password.password = true
|
||||||
|
|
||||||
map.on_after_commit = handleAferCommit
|
function map.on_after_commit(self)
|
||||||
|
luci.sys.call("/etc/init.d/cronosagent restart")
|
||||||
|
end
|
||||||
return map
|
return map
|
Loading…
Add table
Reference in a new issue