luci-0.10: merge r7088

This commit is contained in:
Jo-Philipp Wich 2011-05-21 16:30:07 +00:00
parent 15c1b59cf3
commit 3901c82a7f

View file

@ -791,7 +791,7 @@ end
-- @return Boolean indicating whether init is enabled -- @return Boolean indicating whether init is enabled
function init.enabled(name) function init.enabled(name)
if fs.access(init.dir..name) then if fs.access(init.dir..name) then
return ( call(init.dir..name.." enabled") == 0 ) return ( call(init.dir..name.." enabled >/dev/null") == 0 )
end end
return false return false
end end
@ -801,7 +801,7 @@ end
-- @return Numeric index value -- @return Numeric index value
function init.index(name) function init.index(name)
if fs.access(init.dir..name) then 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
end end
@ -810,7 +810,7 @@ end
-- @return Boolean indicating success -- @return Boolean indicating success
function init.enable(name) function init.enable(name)
if fs.access(init.dir..name) then 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
end end
@ -819,7 +819,7 @@ end
-- @return Boolean indicating success -- @return Boolean indicating success
function init.disable(name) function init.disable(name)
if fs.access(init.dir..name) then 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
end end