From: Steven Barth Date: Sun, 25 Jan 2009 17:14:45 +0000 (+0000) Subject: FF-Wiazrd: Add OLSR DNS to dnsmasq X-Git-Tag: 0.9.0~739 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=26272967cfc861b8069a095aced13c59ec8e1e1d;p=project%2Fluci.git FF-Wiazrd: Add OLSR DNS to dnsmasq --- diff --git a/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua b/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua index 6373c7a807..8fad8e0c89 100644 --- a/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua +++ b/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua @@ -256,6 +256,12 @@ function olsr.write(self, section, value) olsrbase.ignore = "0" uci:section("olsrd", "Interface", nil, olsrbase) uci:save("olsrd") + + -- Import hosts + uci:foreach("dhcp", "dnsmasq", function(s) + uci:set("dhcp", s[".name"], "addnhosts", "/var/etc/hosts.olsr") + end) + uci:save("dhcp") end