aboutsummaryrefslogtreecommitdiffstats
path: root/package/dnsmasq/files
diff options
context:
space:
mode:
authorMarkus Wigge <markus@cultcom.de>2009-05-05 09:33:56 +0000
committerMarkus Wigge <markus@cultcom.de>2009-05-05 09:33:56 +0000
commit1ce2df99c610c6b603e2f7b1f3c184d4448b5ece (patch)
tree74a2f14432bd97d02096cf5c98002e031287fea5 /package/dnsmasq/files
parent01613240440aba2d14b894ccde901da01d0bc7e6 (diff)
downloadupstream-1ce2df99c610c6b603e2f7b1f3c184d4448b5ece.tar.gz
upstream-1ce2df99c610c6b603e2f7b1f3c184d4448b5ece.tar.bz2
upstream-1ce2df99c610c6b603e2f7b1f3c184d4448b5ece.zip
changed "option" to "list" for binding interfaces
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15613 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/dnsmasq/files')
-rw-r--r--package/dnsmasq/files/dhcp.conf2
-rw-r--r--package/dnsmasq/files/dnsmasq.init6
2 files changed, 6 insertions, 2 deletions
diff --git a/package/dnsmasq/files/dhcp.conf b/package/dnsmasq/files/dhcp.conf
index f34a0e9158..85228974a1 100644
--- a/package/dnsmasq/files/dhcp.conf
+++ b/package/dnsmasq/files/dhcp.conf
@@ -13,7 +13,7 @@ config dnsmasq
option resolvfile '/tmp/resolv.conf.auto'
#list server '/mycompany.local/1.2.3.4'
#option nonwildcard 0
- #option interfaces ''
+ #list interface br-lan
config dhcp lan
option interface lan
diff --git a/package/dnsmasq/files/dnsmasq.init b/package/dnsmasq/files/dnsmasq.init
index 0b2f630390..7a1530fdd3 100644
--- a/package/dnsmasq/files/dnsmasq.init
+++ b/package/dnsmasq/files/dnsmasq.init
@@ -40,6 +40,10 @@ append_server() {
append args "-S $1"
}
+append_interface() {
+ append args "-i $1"
+}
+
dnsmasq() {
local cfg="$1"
append_bool "$cfg" authoritative "-K"
@@ -68,11 +72,11 @@ dnsmasq() {
append_parm "$cfg" "domain" "-s"
append_parm "$cfg" "local" "-S"
config_list_foreach "$cfg" "server" append_server
+ config_list_foreach "$cfg" "interface" append_interface
append_parm "$cfg" "leasefile" "-l"
append_parm "$cfg" "resolvfile" "-r"
append_parm "$cfg" "tftp_root" "--tftp-root"
append_parm "$cfg" "dhcp_boot" "--dhcp-boot"
- append_parm "$cfg" "interfaces" "-i"
config_get leasefile $cfg leasefile
[ -e "$leasefile" ] || touch "$leasefile"