base-files: move firstboot to /sbin
[openwrt.git] / package / dnsmasq / files / dnsmasq.init
index b5ecf1d..1aeeb94 100644 (file)
@@ -44,6 +44,10 @@ append_interface() {
        append args "-i $1"
 }
 
+append_notinterface() {
+       append args "-I $1"
+}
+
 dnsmasq() {
        local cfg="$1"
        append_bool "$cfg" authoritative "-K"
@@ -73,6 +77,7 @@ dnsmasq() {
        append_parm "$cfg" "local" "-S"
        config_list_foreach "$cfg" "server" append_server
        config_list_foreach "$cfg" "interface" append_interface
+       config_list_foreach "$cfg" "notinterface" append_notinterface
        append_parm "$cfg" "leasefile" "-l"
        append_parm "$cfg" "resolvfile" "-r"
        append_parm "$cfg" "tftp_root" "--tftp-root"
This page took 0.027103 seconds and 4 git commands to generate.