[PATCH] Allow UCI interface names in /etc/config/dhcp
[openwrt.git] / package / dnsmasq / files / dnsmasq.init
index e2f35e8..c69f0d2 100644 (file)
@@ -42,11 +42,13 @@ append_server() {
 }
 
 append_interface() {
-       append args "-i $1"
+       local ifname=$(uci_get_state network "$1" ifname "$1")
+       append args "-i $ifname"
 }
 
 append_notinterface() {
-       append args "-I $1"
+       local ifname=$(uci_get_state network "$1" ifname "$1")
+       append args "-I $ifname"
 }
 
 append_addnhosts() {
This page took 0.023446 seconds and 4 git commands to generate.