From: Jo-Philipp Wich Date: Sat, 13 Sep 2008 05:23:30 +0000 (+0000) Subject: * luci/app-olsr: further fixes in olsr plugins config X-Git-Tag: 0.9.0~1329 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=b69589fba337ac9c362e02d58c354b2e218900c7 * luci/app-olsr: further fixes in olsr plugins config --- diff --git a/applications/luci-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua b/applications/luci-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua index 236276d47..63e12e08d 100644 --- a/applications/luci-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua +++ b/applications/luci-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua @@ -97,7 +97,7 @@ local knownPlParams = { { DynamicList, "Net", "0.0.0.0/0", IpMask2Cidr, Cidr2IpMask } }, - ["olsrd_nameservice.so.0.2"] = { + ["olsrd_nameservice.so.0.3"] = { { DynamicList, "name", "my-name.mesh" }, { DynamicList, "hosts", "1.2.3.4 name-for-other-interface.mesh" }, { Value, "suffix", ".olsr" }, @@ -162,6 +162,7 @@ for plugin, options in pairs(knownPlParams) do bool.enabled = "true" bool.disabled = "false" end + bool.optional = true bool.default = default bool:depends({ library = plugin }) else @@ -184,6 +185,7 @@ for plugin, options in pairs(knownPlParams) do if otype == DynamicList then field:value( default ) end + field.optional = true field.default = default field:depends({ library = plugin }) end