1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-04 21:09:49 +03:00

- added "server" option list to delegate specific subdomains

to given upstream servers


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14232 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
markus 2009-01-27 22:58:11 +00:00
parent 8895980ca5
commit 85e49e4898
2 changed files with 6 additions and 0 deletions

View File

@ -11,6 +11,7 @@ config dnsmasq
option readethers 1
option leasefile '/tmp/dhcp.leases'
option resolvfile '/tmp/resolv.conf.auto'
#list server '/mycompany.local/1.2.3.4'
config dhcp lan
option interface lan

View File

@ -36,6 +36,10 @@ append_parm() {
append args "$switch $_loctmp"
}
append_server() {
append args "-S $1"
}
dnsmasq() {
local cfg="$1"
append_bool "$cfg" authoritative "-K"
@ -62,6 +66,7 @@ dnsmasq() {
append_parm "$cfg" "queryport" "-Q"
append_parm "$cfg" "domain" "-s"
append_parm "$cfg" "local" "-S"
config_list_foreach "$cfg" "server" append_server
append_parm "$cfg" "leasefile" "-l"
append_parm "$cfg" "resolvfile" "-r"
append_parm "$cfg" "tftp_root" "--tftp-root"