changed "option" to "list" for binding interfaces
authorMarkus Wigge <mwigge@marcant.net>
Tue, 5 May 2009 09:33:56 +0000 (09:33 +0000)
committerMarkus Wigge <mwigge@marcant.net>
Tue, 5 May 2009 09:33:56 +0000 (09:33 +0000)
SVN-Revision: 15613

package/dnsmasq/files/dhcp.conf
package/dnsmasq/files/dnsmasq.init

index f34a0e91580e96c124668bd47ced6c23d9aa949e..85228974a1feb5828093fd4d97ef2f48ba4f8fd3 100644 (file)
@@ -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
index 0b2f6303904ad1ef3102a350112d495f7714db52..7a1530fdd3640278777bfa9e38f21b095f640c83 100644 (file)
@@ -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"