applications/luci-ffwizard-leipzig: also unload dyn_gw_plain if share internet is not checked

This commit is contained in:
Jo-Philipp Wich 2009-01-30 15:07:06 +00:00
parent 39e418ab4a
commit abf0c329c5

View file

@ -296,11 +296,14 @@ end
function share.write(self, section, value)
uci:delete_all("firewall", "forwarding", {src="freifunk", dest="wan"})
uci:delete_all("olsrd", "LoadPlugin", {library="olsrd_dyn_gw_plain.so.0.4"})
if value == "1" then
uci:section("firewall", "forwarding", nil, {src="freifunk", dest="wan"})
uci:section("olsrd", "LoadPlugin", nil, {library="olsrd_dyn_gw_plain.so.0.4"})
end
uci:save("firewall")
uci:save("olsrd")
end