From ca9314ee2203551fe2b28a976d7c6014b3b0957a Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Mon, 16 Apr 2012 16:49:04 +0000 Subject: New application for watchcat Hi, This patch add a new luci-application for the watchcat package (in feeds/packages/utils). Chris --- .../luci-watchcat/luasrc/controller/watchcat.lua | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 applications/luci-watchcat/luasrc/controller/watchcat.lua (limited to 'applications/luci-watchcat/luasrc/controller') 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 + +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 -- cgit v1.2.3