X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=applications%2Fluci-initmgr%2Fluasrc%2Fcontroller%2Finit.lua;fp=applications%2Fluci-initmgr%2Fluasrc%2Fcontroller%2Finit.lua;h=0000000000000000000000000000000000000000;hb=3b481cbc79e20852cff62fb50a0788a1500123f0;hp=f3fa7ef79b64e0efbad294e00210bddabd9855f2;hpb=73112f9c44b0dc333b6ec1878009e0e69c8db500;p=project%2Fluci.git diff --git a/applications/luci-initmgr/luasrc/controller/init.lua b/applications/luci-initmgr/luasrc/controller/init.lua deleted file mode 100644 index f3fa7ef79..000000000 --- a/applications/luci-initmgr/luasrc/controller/init.lua +++ /dev/null @@ -1,33 +0,0 @@ ---[[ -LuCI - Lua Configuration Interface - -Copyright 2008 Steven Barth -Copyright 2008 Jo-Philipp Wich - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -$Id$ -]]-- -module("luci.controller.init", package.seeall) - -function index() - if not nixio.fs.access("/etc/rc.common") then - return - end - - require("luci.i18n") - luci.i18n.loadc("initmgr") - - entry( - {"admin", "services", "init"}, form("init/init"), - luci.i18n.translate("Initscripts"), 0 - ).i18n = "initmgr" - - entry( - {"admin", "services", "init", "startup" },form("init/startup"), - luci.i18n.translate("Local Startup"), 10).i18n = "initmgr" -end