diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2014-10-30 12:40:39 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2014-10-30 12:40:39 +0100 |
commit | 1b6e4e4304ffa884bf1949b8213c422a3f4fd22c (patch) | |
tree | 884ca726c34d9a463a23d4085efc9325b5807753 /applications/luci-shairport/luasrc/controller | |
parent | 5189dda49f8764898e3f9289b73d8b347d2fe1e7 (diff) | |
parent | 8414e7142259519ea006bf4081288bc742ed8131 (diff) |
Merge pull request #242 from openwrt-es/luci-shairport
applications/luci-shairport: add new package.
Diffstat (limited to 'applications/luci-shairport/luasrc/controller')
-rw-r--r-- | applications/luci-shairport/luasrc/controller/shairport.lua | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/applications/luci-shairport/luasrc/controller/shairport.lua b/applications/luci-shairport/luasrc/controller/shairport.lua new file mode 100644 index 0000000000..d201eca542 --- /dev/null +++ b/applications/luci-shairport/luasrc/controller/shairport.lua @@ -0,0 +1,25 @@ +--[[ +LuCI - Lua Configuration Interface - Shairport 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.shairport", package.seeall) + +function index() + if not nixio.fs.access("/etc/config/shairport") then + return + end + + local page = entry({"admin", "services", "shairport"}, cbi("shairport"), _("Shairport")) + page.dependent = true + +end |