modules/admin-full: filter init scripts without START in startup model

This commit is contained in:
Jo-Philipp Wich 2012-05-06 09:48:06 +00:00
parent 216264b6e4
commit a27481f35c

View file

@ -2,7 +2,7 @@
LuCI - Lua Configuration Interface LuCI - Lua Configuration Interface
Copyright 2008 Steven Barth <steven@midlink.org> Copyright 2008 Steven Barth <steven@midlink.org>
Copyright 2010-2011 Jo-Philipp Wich <xm@subsignal.org> Copyright 2010-2012 Jo-Philipp Wich <xm@subsignal.org>
Copyright 2010 Manuel Munz <freifunk at somakoma dot de> Copyright 2010 Manuel Munz <freifunk at somakoma dot de>
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
@ -24,12 +24,14 @@ for _, name in ipairs(luci.sys.init.names()) do
local index = luci.sys.init.index(name) local index = luci.sys.init.index(name)
local enabled = luci.sys.init.enabled(name) local enabled = luci.sys.init.enabled(name)
if index < 255 then
inits["%02i.%s" % { index, name }] = { inits["%02i.%s" % { index, name }] = {
name = name, name = name,
index = tostring(index), index = tostring(index),
enabled = enabled enabled = enabled
} }
end end
end
m = SimpleForm("initmgr", translate("Initscripts"), translate("You can enable or disable installed init scripts here. Changes will applied after a device reboot.<br /><strong>Warning: If you disable essential init scripts like \"network\", your device might become inaccesable!</strong>")) m = SimpleForm("initmgr", translate("Initscripts"), translate("You can enable or disable installed init scripts here. Changes will applied after a device reboot.<br /><strong>Warning: If you disable essential init scripts like \"network\", your device might become inaccesable!</strong>"))