34 lines
1.0 KiB
Lua
34 lines
1.0 KiB
Lua
--[[
|
|
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: status.lua 3792 2008-11-16 22:46:25Z jow $
|
|
]]--
|
|
module("luci.controller.admin.status", package.seeall)
|
|
|
|
function index()
|
|
luci.i18n.loadc("admin-core")
|
|
local i18n = luci.i18n.translate
|
|
|
|
entry({"admin", "status"}, template("admin_status/index"), i18n("status", "Status"), 20).index = true
|
|
entry({"admin", "status", "syslog"}, call("action_syslog"), i18n("syslog", "Systemprotokoll"), 1)
|
|
entry({"admin", "status", "dmesg"}, call("action_dmesg"), i18n("dmesg", "Kernelprotokoll"), 2)
|
|
end
|
|
|
|
function action_syslog()
|
|
local syslog = luci.sys.syslog()
|
|
luci.template.render("admin_status/syslog", {syslog=syslog})
|
|
end
|
|
|
|
function action_dmesg()
|
|
local dmesg = luci.sys.dmesg()
|
|
luci.template.render("admin_status/dmesg", {dmesg=dmesg})
|
|
end
|