16 lines
462 B
Lua
16 lines
462 B
Lua
-- Copyright 2008 Steven Barth <steven@midlink.org>
|
|
-- Copyright 2011 Jo-Philipp Wich <jow@openwrt.org>
|
|
-- Licensed to the public under the Apache License 2.0.
|
|
|
|
module("luci.controller.admin.status", package.seeall)
|
|
|
|
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
|