1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-17 04:33:57 +02:00

dnsmasq: drop --interface and --except-interface options when the interface cannot be found

Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
Felix Fietkau 2016-07-29 20:58:14 +02:00
parent eadf5fb7f8
commit b2ddfbc1c7

View File

@ -119,12 +119,12 @@ append_ipset() {
}
append_interface() {
network_get_device ifname "$1"
network_get_device ifname "$1" || return
xappend "--interface=$ifname"
}
append_notinterface() {
network_get_device ifname "$1"
network_get_device ifname "$1" || return
xappend "--except-interface=$ifname"
}