mirror of
https://github.com/openwrt/luci.git
synced 2025-12-21 23:34:34 +04:00
luci-0.10: merge r8127 and r8128
This commit is contained in:
@@ -32,7 +32,7 @@ local table = require "table"
|
|||||||
local setmetatable, rawget, rawset = setmetatable, rawget, rawset
|
local setmetatable, rawget, rawset = setmetatable, rawget, rawset
|
||||||
local require, getmetatable = require, getmetatable
|
local require, getmetatable = require, getmetatable
|
||||||
local error, pairs, ipairs = error, pairs, ipairs
|
local error, pairs, ipairs = error, pairs, ipairs
|
||||||
local type, tostring, tonumber = type, tostring, tonumber
|
local type, tostring, tonumber, unpack = type, tostring, tonumber, unpack
|
||||||
|
|
||||||
--- LuCI UCI model library.
|
--- LuCI UCI model library.
|
||||||
-- The typical workflow for UCI is: Get a cursor instance from the
|
-- The typical workflow for UCI is: Get a cursor instance from the
|
||||||
@@ -69,9 +69,12 @@ local Cursor = getmetatable(inst)
|
|||||||
-- @param command Don't apply only return the command
|
-- @param command Don't apply only return the command
|
||||||
function Cursor.apply(self, configlist, command)
|
function Cursor.apply(self, configlist, command)
|
||||||
configlist = self:_affected(configlist)
|
configlist = self:_affected(configlist)
|
||||||
local reloadcmd = "/sbin/luci-reload " .. table.concat(configlist, " ")
|
if command then
|
||||||
|
return { "/sbin/luci-reload", unpack(configlist) }
|
||||||
return command and reloadcmd or os.execute(reloadcmd .. " >/dev/null 2>&1")
|
else
|
||||||
|
return os.execute("/sbin/luci-reload %s >/dev/null 2>&1"
|
||||||
|
% table.concat(configlist, " "))
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -15,12 +15,9 @@ $Id$
|
|||||||
module("luci.controller.admin.servicectl", package.seeall)
|
module("luci.controller.admin.servicectl", package.seeall)
|
||||||
|
|
||||||
function index()
|
function index()
|
||||||
luci.i18n.loadc("base")
|
entry({"servicectl"}, alias("servicectl", "status")).sysauth = "root"
|
||||||
local i18n = luci.i18n.translate
|
entry({"servicectl", "status"}, call("action_status")).leaf = true
|
||||||
|
entry({"servicectl", "restart"}, call("action_restart")).leaf = true
|
||||||
entry({"servicectl"}, alias("servicectl", "status"), nil, 1).sysauth = "root"
|
|
||||||
entry({"servicectl", "status"}, call("action_status"), nil, 2).leaf = true
|
|
||||||
entry({"servicectl", "restart"}, call("action_restart"), nil, 3).leaf = true
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function action_status()
|
function action_status()
|
||||||
@@ -34,14 +31,18 @@ function action_status()
|
|||||||
end
|
end
|
||||||
|
|
||||||
function action_restart()
|
function action_restart()
|
||||||
if luci.dispatcher.context.requestpath[3] then
|
local uci = require "luci.model.uci".cursor()
|
||||||
|
local rqp = luci.dispatcher.context.requestpath
|
||||||
|
|
||||||
|
if rqp[3] then
|
||||||
local service
|
local service
|
||||||
local services = { }
|
local services = { }
|
||||||
|
|
||||||
for service in luci.dispatcher.context.requestpath[3]:gmatch("[%w_-]+") do
|
for service in rqp[3]:gmatch("[%w_-]+") do
|
||||||
services[#services+1] = service
|
services[#services+1] = service
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local command = uci:apply(services, true)
|
||||||
if nixio.fork() == 0 then
|
if nixio.fork() == 0 then
|
||||||
local i = nixio.open("/dev/null", "r")
|
local i = nixio.open("/dev/null", "r")
|
||||||
local o = nixio.open("/dev/null", "w")
|
local o = nixio.open("/dev/null", "w")
|
||||||
@@ -52,7 +53,7 @@ function action_restart()
|
|||||||
i:close()
|
i:close()
|
||||||
o:close()
|
o:close()
|
||||||
|
|
||||||
nixio.exec("/bin/sh", "/sbin/luci-reload", unpack(services))
|
nixio.exec("/bin/sh", unpack(command))
|
||||||
else
|
else
|
||||||
luci.http.write("OK")
|
luci.http.write("OK")
|
||||||
os.exit(0)
|
os.exit(0)
|
||||||
|
|||||||
Reference in New Issue
Block a user