提交 8431916f 编写于 作者: J Jo-Philipp Wich

libs/sys: redirect stdout to /dev7null when calling initscripts

上级 f9f1b0ea
......@@ -791,7 +791,7 @@ end
-- @return Boolean indicating whether init is enabled
function init.enabled(name)
if fs.access(init.dir..name) then
return ( call(init.dir..name.." enabled") == 0 )
return ( call(init.dir..name.." enabled >/dev/null") == 0 )
end
return false
end
......@@ -801,7 +801,7 @@ end
-- @return Numeric index value
function init.index(name)
if fs.access(init.dir..name) then
return call("source "..init.dir..name.." enabled; exit $START")
return call("source "..init.dir..name.." enabled >/dev/null; exit $START")
end
end
......@@ -810,7 +810,7 @@ end
-- @return Boolean indicating success
function init.enable(name)
if fs.access(init.dir..name) then
return ( call(init.dir..name.." enable") == 1 )
return ( call(init.dir..name.." enable >/dev/null") == 1 )
end
end
......@@ -819,7 +819,7 @@ end
-- @return Boolean indicating success
function init.disable(name)
if fs.access(init.dir..name) then
return ( call(init.dir..name.." disable") == 0 )
return ( call(init.dir..name.." disable >/dev/null") == 0 )
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册