libs/uci: Pipe output of reload commands to /dev/null
This commit is contained in:
parent
5ff3750b37
commit
041321c5f7
1 changed files with 2 additions and 1 deletions
|
@ -58,7 +58,8 @@ local Cursor = getmetatable(cursor())
|
||||||
-- @param config UCI config
|
-- @param config UCI config
|
||||||
function Cursor.apply(self, config)
|
function Cursor.apply(self, config)
|
||||||
local conf = require "luci.config"
|
local conf = require "luci.config"
|
||||||
return conf.uci_oncommit[config] and os.execute(conf.uci_oncommit[config])
|
return conf.uci_oncommit[config] and
|
||||||
|
os.execute(conf.uci_oncommit[config] .. " >/dev/null 2>&1")
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Delete all sections of a given type that match certain criteria.
|
--- Delete all sections of a given type that match certain criteria.
|
||||||
|
|
Loading…
Reference in a new issue