diff options
author | Álvaro Fernández Rojas <noltari@gmail.com> | 2014-10-28 19:38:21 +0100 |
---|---|---|
committer | Álvaro Fernández Rojas <noltari@gmail.com> | 2014-10-28 19:38:21 +0100 |
commit | ad7ef75a846e645ac522b45542740ece0811dca7 (patch) | |
tree | c898892be90b1627ea7bbe534c26975838849816 /applications/luci-dump1090/luasrc/controller/dump1090.lua | |
parent | 2826426c6a518867d695f05e514e41703deac3a1 (diff) |
applications/luci-dump1090: add new package.
This adds support for configuring dump1090.
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Diffstat (limited to 'applications/luci-dump1090/luasrc/controller/dump1090.lua')
-rw-r--r-- | applications/luci-dump1090/luasrc/controller/dump1090.lua | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/applications/luci-dump1090/luasrc/controller/dump1090.lua b/applications/luci-dump1090/luasrc/controller/dump1090.lua new file mode 100644 index 0000000000..c29c22fc60 --- /dev/null +++ b/applications/luci-dump1090/luasrc/controller/dump1090.lua @@ -0,0 +1,25 @@ +--[[ +LuCI - Lua Configuration Interface - dump1090 support + +Copyright 2014 Álvaro Fernández Rojas <noltari@gmail.com> + +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.dump1090", package.seeall) + +function index() + if not nixio.fs.access("/etc/config/dump1090") then + return + end + + local page = entry({"admin", "services", "dump1090"}, cbi("dump1090"), _("dump1090")) + page.dependent = true + +end |