aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorEric Luehrsen <ericluehrsen@hotmail.com>2017-02-04 01:51:59 -0500
committerJo-Philipp Wich <jo@mein.io>2017-02-05 22:26:22 +0100
commitf9f6a21c81c0a695edae24e29f938ae077d94cb3 (patch)
tree50d6e1babd1f38af72effafb2644b5532b426f20 /package
parentbb7068f26c4bd89977f3205672f19be60924101c (diff)
downloadupstream-f9f6a21c81c0a695edae24e29f938ae077d94cb3.tar.gz
upstream-f9f6a21c81c0a695edae24e29f938ae077d94cb3.tar.bz2
upstream-f9f6a21c81c0a695edae24e29f938ae077d94cb3.zip
dnsmasq: fix instances in dhcp_add()
ref commit 9525743c076393336cd2129539c974f8a01c7894 dnsmasq: make DHCPv6 viable for standalone dnsmasq install Above commit broke instancing by missing filter_dnsmasq() as part of the dhcp_add() execution. Signed-off-by: Eric Luehrsen <ericluehrsen@hotmail.com>
Diffstat (limited to 'package')
-rw-r--r--package/network/services/dnsmasq/files/dnsmasq.init4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/network/services/dnsmasq/files/dnsmasq.init b/package/network/services/dnsmasq/files/dnsmasq.init
index 954dda94fb..5903abe6b0 100644
--- a/package/network/services/dnsmasq/files/dnsmasq.init
+++ b/package/network/services/dnsmasq/files/dnsmasq.init
@@ -891,13 +891,13 @@ dnsmasq_start()
# Enable RA feature for when/if it is constructed,
# and RA is selected per interface pool (RA, DHCP, or both),
# but no one (should) want RA broadcast in syslog
- config_foreach dhcp_add dhcp
+ config_foreach filter_dnsmasq dhcp dhcp_add "$cfg"
xappend "--enable-ra"
xappend "--quiet-ra"
append_bool "$cfg" quietdhcp "--quiet-dhcp6"
elif [ "$DNSMASQ_DHCP_VER" -gt 0 ] ; then
- config_foreach dhcp_add dhcp
+ config_foreach filter_dnsmasq dhcp dhcp_add "$cfg"
fi