diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-07-01 11:32:29 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-07-01 11:32:29 +0000 |
commit | 7f573ef7e3738a4eb509deead4f38f338a913f55 (patch) | |
tree | 2f7c46b208509c82ddf0c428ab332fc84e25ce1e /package/dnsmasq/files/dnsmasq.init | |
parent | 6e419fbdeb4bb65d61f86a28ac0fbdfa40e03091 (diff) | |
download | upstream-7f573ef7e3738a4eb509deead4f38f338a913f55.tar.gz upstream-7f573ef7e3738a4eb509deead4f38f338a913f55.tar.bz2 upstream-7f573ef7e3738a4eb509deead4f38f338a913f55.zip |
package/dnsmasq: permit dhcp_option in global dnsmasq config section
dnsmasq currently permits dhcp_options to be specified only in "config dhcp"
sections of /etc/config/dhcp. When dnsmasq is providing DHCP service for
multiple subnets and there are multiple "config dhcp" sections without "option
ignore", it makes sense to allow dhcp_options that should apply globally in
the "config dnsmasq" section of /etc/config/dhcp. dhcp_option is a list option.
[jow: rework patch to apply after dhcp-option-force handling got introduced]
Signed-off-by: Mark Mentovai <mark@moxienet.com>
SVN-Revision: 32568
Diffstat (limited to 'package/dnsmasq/files/dnsmasq.init')
-rw-r--r-- | package/dnsmasq/files/dnsmasq.init | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/dnsmasq/files/dnsmasq.init b/package/dnsmasq/files/dnsmasq.init index 92e10ee494..a1334d05fc 100644 --- a/package/dnsmasq/files/dnsmasq.init +++ b/package/dnsmasq/files/dnsmasq.init @@ -143,6 +143,8 @@ dnsmasq() { config_list_foreach "$cfg" rebind_domain append_rebind_domain } + dhcp_option_add "$cfg" "" 0 + echo >> $CONFIGFILE } @@ -362,7 +364,7 @@ dhcp_option_add() { config_get dhcp_option "$cfg" dhcp_option for o in $dhcp_option; do - xappend "--dhcp-option${force:+-force}=$networkid","$o" + xappend "--dhcp-option${force:+-force}=${networkid:+$networkid,}$o" done } |