2011-02-10 14:58:44 +00:00
|
|
|
module "luci.controller.services"
|
|
|
|
|
|
|
|
function index()
|
|
|
|
local uci = require "luci.model.uci".cursor()
|
|
|
|
|
|
|
|
uci:foreach("olsrd", "LoadPlugin", function(s)
|
|
|
|
if s.library == "olsrd_nameservice.so.0.3" then
|
|
|
|
has_serv = true
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
if has_serv then
|
2011-08-12 13:16:27 +00:00
|
|
|
entry({"freifunk", "services"}, template("freifunk-services/services"), _("Services"), 60)
|
2011-02-10 14:58:44 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|