From c35bdaf847adcc309077a657d081e7343e3c1912 Mon Sep 17 00:00:00 2001 From: Manuel Munz Date: Thu, 22 Sep 2011 13:14:22 +0000 Subject: [PATCH] contrib/freifunk-policyrouting: Fix getting the name of interfaces --- .../files/etc/hotplug.d/firewall/24-policyrouting | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/contrib/package/freifunk-policyrouting/files/etc/hotplug.d/firewall/24-policyrouting b/contrib/package/freifunk-policyrouting/files/etc/hotplug.d/firewall/24-policyrouting index 3e6f8155c2..014803a7d9 100644 --- a/contrib/package/freifunk-policyrouting/files/etc/hotplug.d/firewall/24-policyrouting +++ b/contrib/package/freifunk-policyrouting/files/etc/hotplug.d/firewall/24-policyrouting @@ -46,7 +46,11 @@ if [ "$ACTION" = "add" ] && [ "$INTERFACE" = "wan" ]; then if [ "`uci -q get network.$int.type`" == "bridge" ]; then dev="br-$int" else - dev=`uci get network.$int.ifname` + if [ -n "`uci -p /var/state get network.$int.ifname`" ]; then + dev=`uci -p /var/state get network.$int.ifname` + else + dev=`uci -p /var/state get network.$int.device` + fi fi logger -t policyrouting "Add mark 1 to packages coming in via interface $dev" iptables -t mangle -I prerouting_policy -i $dev -j MARK --set-mark 1 -- 2.30.2