mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
changed "option" to "list" for binding interfaces
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15613 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -13,7 +13,7 @@ config dnsmasq
|
|||||||
option resolvfile '/tmp/resolv.conf.auto'
|
option resolvfile '/tmp/resolv.conf.auto'
|
||||||
#list server '/mycompany.local/1.2.3.4'
|
#list server '/mycompany.local/1.2.3.4'
|
||||||
#option nonwildcard 0
|
#option nonwildcard 0
|
||||||
#option interfaces ''
|
#list interface br-lan
|
||||||
|
|
||||||
config dhcp lan
|
config dhcp lan
|
||||||
option interface lan
|
option interface lan
|
||||||
|
|||||||
@@ -40,6 +40,10 @@ append_server() {
|
|||||||
append args "-S $1"
|
append args "-S $1"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
append_interface() {
|
||||||
|
append args "-i $1"
|
||||||
|
}
|
||||||
|
|
||||||
dnsmasq() {
|
dnsmasq() {
|
||||||
local cfg="$1"
|
local cfg="$1"
|
||||||
append_bool "$cfg" authoritative "-K"
|
append_bool "$cfg" authoritative "-K"
|
||||||
@@ -68,11 +72,11 @@ dnsmasq() {
|
|||||||
append_parm "$cfg" "domain" "-s"
|
append_parm "$cfg" "domain" "-s"
|
||||||
append_parm "$cfg" "local" "-S"
|
append_parm "$cfg" "local" "-S"
|
||||||
config_list_foreach "$cfg" "server" append_server
|
config_list_foreach "$cfg" "server" append_server
|
||||||
|
config_list_foreach "$cfg" "interface" append_interface
|
||||||
append_parm "$cfg" "leasefile" "-l"
|
append_parm "$cfg" "leasefile" "-l"
|
||||||
append_parm "$cfg" "resolvfile" "-r"
|
append_parm "$cfg" "resolvfile" "-r"
|
||||||
append_parm "$cfg" "tftp_root" "--tftp-root"
|
append_parm "$cfg" "tftp_root" "--tftp-root"
|
||||||
append_parm "$cfg" "dhcp_boot" "--dhcp-boot"
|
append_parm "$cfg" "dhcp_boot" "--dhcp-boot"
|
||||||
append_parm "$cfg" "interfaces" "-i"
|
|
||||||
|
|
||||||
config_get leasefile $cfg leasefile
|
config_get leasefile $cfg leasefile
|
||||||
[ -e "$leasefile" ] || touch "$leasefile"
|
[ -e "$leasefile" ] || touch "$leasefile"
|
||||||
|
|||||||
Reference in New Issue
Block a user