summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-watchcat/luasrc/controller
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-04-16 16:49:04 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-04-16 16:49:04 +0000
commitca9314ee2203551fe2b28a976d7c6014b3b0957a (patch)
tree3ff3224577e9a46e14f7ab3060ec10ed27e30bd8 /applications/luci-watchcat/luasrc/controller
parentb6c98f9c579e8f18af57962d0e500b5b20bf6439 (diff)
New application for watchcat
Hi, This patch add a new luci-application for the watchcat package (in feeds/packages/utils). Chris
Diffstat (limited to 'applications/luci-watchcat/luasrc/controller')
-rw-r--r--applications/luci-watchcat/luasrc/controller/watchcat.lua22
1 files changed, 22 insertions, 0 deletions
diff --git a/applications/luci-watchcat/luasrc/controller/watchcat.lua b/applications/luci-watchcat/luasrc/controller/watchcat.lua
new file mode 100644
index 0000000000..5eba5cdebb
--- /dev/null
+++ b/applications/luci-watchcat/luasrc/controller/watchcat.lua
@@ -0,0 +1,22 @@
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2012 Christian Gagneraud <chris@techworks.ie>
+
+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.watchcat", package.seeall)
+
+function index()
+ if not nixio.fs.access("/etc/config/system") then
+ return
+ end
+ entry({"admin", "services", "watchcat"}, cbi("watchcat/watchcat"), _("Watchcat"), 90)
+end