luci/applications/luci-app-olsr-services/luasrc/controller/services.lua
mmouselli 19e9d84602 luci-app-olsr-services: Don't use the nameservice with a specific version.
The "Services" menu option of olsr on the top of the web interface
is not there.

A specific version of the App name was in the controller service
Removing the limitation will fix the problem

https://github.com/freifunk-berlin/firmware/issues/594

Signed-off-by: mmouselli <m.mouselli@syseleven.de>
2018-10-21 21:14:45 +02:00

16 lines
344 B
Lua

module "luci.controller.services"
function index()
local uci = require "luci.model.uci".cursor()
uci:foreach("olsrd", "LoadPlugin", function(s)
if s.library == "olsrd_nameservice" then
has_serv = true
end
end)
if has_serv then
entry({"freifunk", "services"}, template("freifunk-services/services"), _("Services"), 60)
end
end