diff options
author | mmouselli <m.mouselli@syseleven.de> | 2018-10-21 18:47:57 +0200 |
---|---|---|
committer | mmouselli <m.mouselli@syseleven.de> | 2018-10-21 21:14:45 +0200 |
commit | 19e9d84602cfad4ab317d144dc3aaa599c965371 (patch) | |
tree | 5e2616da7f7abc03190c7bb90f0246dbb76b081a /applications | |
parent | 696cb9fe803fc6f479459abadba17f823b5ba108 (diff) |
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>
Diffstat (limited to 'applications')
-rw-r--r-- | applications/luci-app-olsr-services/luasrc/controller/services.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-olsr-services/luasrc/controller/services.lua b/applications/luci-app-olsr-services/luasrc/controller/services.lua index a4636bfd5..7a543d353 100644 --- a/applications/luci-app-olsr-services/luasrc/controller/services.lua +++ b/applications/luci-app-olsr-services/luasrc/controller/services.lua @@ -4,7 +4,7 @@ function index() local uci = require "luci.model.uci".cursor() uci:foreach("olsrd", "LoadPlugin", function(s) - if s.library == "olsrd_nameservice.so.0.3" then + if s.library == "olsrd_nameservice" then has_serv = true end end) |