modules/admin-full:
- move crontab to system menu - delete now empty services dispatcher - move service menu declaration into index
This commit is contained in:
parent
76548e7dad
commit
8c9aef1b2d
4 changed files with 4 additions and 20 deletions
|
@ -30,6 +30,9 @@ function index()
|
||||||
page.ucidata = true
|
page.ucidata = true
|
||||||
page.index = true
|
page.index = true
|
||||||
|
|
||||||
|
-- Empty services menu to be populated by addons
|
||||||
|
entry({"admin", "services"}, firstchild(), _("Services"), 40).index = true
|
||||||
|
|
||||||
entry({"admin", "logout"}, call("action_logout"), _("Logout"), 90)
|
entry({"admin", "logout"}, call("action_logout"), _("Logout"), 90)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -1,20 +0,0 @@
|
||||||
--[[
|
|
||||||
LuCI - Lua Configuration Interface
|
|
||||||
|
|
||||||
Copyright 2008 Steven Barth <steven@midlink.org>
|
|
||||||
|
|
||||||
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.admin.services", package.seeall)
|
|
||||||
|
|
||||||
function index()
|
|
||||||
entry({"admin", "services"}, firstchild(), _("Services"), 40).index = true
|
|
||||||
entry({"admin", "services", "crontab"}, form("admin_services/crontab"), _("Scheduled Tasks"), 50)
|
|
||||||
end
|
|
|
@ -28,6 +28,7 @@ function index()
|
||||||
end
|
end
|
||||||
|
|
||||||
entry({"admin", "system", "startup"}, form("admin_system/startup"), _("Startup"), 45)
|
entry({"admin", "system", "startup"}, form("admin_system/startup"), _("Startup"), 45)
|
||||||
|
entry({"admin", "system", "crontab"}, form("admin_system/crontab"), _("Scheduled Tasks"), 46)
|
||||||
|
|
||||||
if nixio.fs.access("/etc/config/fstab") then
|
if nixio.fs.access("/etc/config/fstab") then
|
||||||
entry({"admin", "system", "fstab"}, cbi("admin_system/fstab"), _("Mount Points"), 50)
|
entry({"admin", "system", "fstab"}, cbi("admin_system/fstab"), _("Mount Points"), 50)
|
||||||
|
|
Loading…
Reference in a new issue