Author: jow Date: 2015-01-16 20:04:19 +0100 (Fri, 16 Jan 2015) New Revision: 43982
Modified: trunk/package/network/services/dnsmasq/Makefile trunk/package/network/services/dnsmasq/files/dhcp.conf trunk/package/network/services/dnsmasq/files/dnsmasq.init Log: dnsmasq: support and use local-service by default (#14951) Signed-off-by: Jo-Philipp Wich <[email protected]> Modified: trunk/package/network/services/dnsmasq/Makefile =================================================================== --- trunk/package/network/services/dnsmasq/Makefile 2015-01-16 15:59:29 UTC (rev 43981) +++ trunk/package/network/services/dnsmasq/Makefile 2015-01-16 19:04:19 UTC (rev 43982) @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2014 OpenWrt.org +# Copyright (C) 2006-2015 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,7 +9,7 @@ PKG_NAME:=dnsmasq PKG_VERSION:=2.72 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://thekelleys.org.uk/dnsmasq Modified: trunk/package/network/services/dnsmasq/files/dhcp.conf =================================================================== --- trunk/package/network/services/dnsmasq/files/dhcp.conf 2015-01-16 15:59:29 UTC (rev 43981) +++ trunk/package/network/services/dnsmasq/files/dhcp.conf 2015-01-16 19:04:19 UTC (rev 43982) @@ -19,6 +19,7 @@ #list interface br-lan #list notinterface lo #list bogusnxdomain '64.94.110.11' + option localservice 1 # disable to allow DNS requests from non-loclal subnets config dhcp lan option interface lan Modified: trunk/package/network/services/dnsmasq/files/dnsmasq.init =================================================================== --- trunk/package/network/services/dnsmasq/files/dnsmasq.init 2015-01-16 15:59:29 UTC (rev 43981) +++ trunk/package/network/services/dnsmasq/files/dnsmasq.init 2015-01-16 19:04:19 UTC (rev 43982) @@ -127,6 +127,7 @@ append_bool "$cfg" nonwildcard "--bind-interfaces" append_bool "$cfg" fqdn "--dhcp-fqdn" append_bool "$cfg" proxydnssec "--proxy-dnssec" + append_bool "$cfg" localservice "--local-service" append_parm "$cfg" dhcpscript "--dhcp-script" append_parm "$cfg" cachesize "--cache-size" _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
