Fix build on non-SMP machines of the remote GDB debugging (#2666)
[openwrt.git] / package / dnsmasq / files / dnsmasq.init
index ec595af..75b20df 100644 (file)
@@ -50,17 +50,19 @@ dnsmasq() {
        append_bool "$cfg" localise_queries "-y"
        append_bool "$cfg" readethers "-Z"
        append_bool "$cfg" dbus "-l"
+       append_bool "$cfg" boguspriv "-b"
+       append_bool "$cfg" expandhosts "-E"
 
        append_parm "$cfg" dnsforwardmax "-0"
        append_parm "$cfg" port "-p"
        append_parm "$cfg" ednspacket_max "-P"
        append_parm "$cfg" dhcpleasemax "-X"
-
-       config_get addnhosts "$cfg" addnhosts
-       config_get interface "$cfg" interface
-       config_get exceptinterface "$cfg" exceptinterface
-       config_get queryport "$cfg" queryport
-       config_get domain "$cfg" domain
+       append_parm "$cfg" "addnhosts" "-H"
+       append_parm "$cfg" "queryport" "-Q"
+       append_parm "$cfg" "domain" "-s"
+       append_parm "$cfg" "local" "-S"
+       append_parm "$cfg" "leasefile" "-l"
+       append_parm "$cfg" "resolvfile" "-r"
 }
 
 dhcp_subscrid_add() {
@@ -142,6 +144,8 @@ dhcp_host_add() {
        config_get mac "$cfg" mac
        [ -n "$mac" ] || return 0
 
+       config_get ip "$cfg" ip
+       [ -n "$ip" ] || return 0
 
        append args "--dhcp-host=$mac,$ip"
 
This page took 0.02351 seconds and 4 git commands to generate.