From: Bastian Bittorf Date: Sun, 12 Feb 2017 19:22:23 +0000 (+0100) Subject: olsr: smartfw: fix a syntax error whwile checking for 'nowan' X-Git-Url: http://git.openwrt.org/?p=feed%2Frouting.git;a=commitdiff_plain;h=22c05861e6168e74cd91d202a5ea4119f38d1ce1 olsr: smartfw: fix a syntax error whwile checking for 'nowan' introduced in 059b26c2 in 2011-nov-14 ("Manuel Munz freifunk@somakoma.de modified init file of olsrd with improvements for 6and4 operation and also for setup of smartgw") --- diff --git a/olsrd/files/olsrd.init b/olsrd/files/olsrd.init index f5b8660..48ca281 100644 --- a/olsrd/files/olsrd.init +++ b/olsrd/files/olsrd.init @@ -717,7 +717,7 @@ olsrd_setup_smartgw_rules() { $IP4T -I forwarding_rule -o tnl_+ -j ACCEPT $IP4T -t nat -I postrouting_rule -o tnl_+ -j MASQUERADE # Allow forwarding from tunl0 to (all) wan-interfaces - if [ "$nowan"="0" ]; then + if [ "$nowan" = '0' ]; then for IFACE in $wanifnames; do $IP4T -A forwarding_rule -i tunl0 -o $IFACE -j ACCEPT done @@ -728,7 +728,7 @@ olsrd_setup_smartgw_rules() { done elif [ "$smartgatewayuplink" = "ipv6" ]; then $IP6T -I forwarding_rule -o tnl_+ -j ACCEPT - if [ "$nowan"="0" ]; then + if [ "$nowan" = '0' ]; then for IFACE in $wanifnames; do $IP6T -A forwarding_rule -i tunl0 -o $IFACE -j ACCEPT done @@ -740,7 +740,7 @@ olsrd_setup_smartgw_rules() { $IP4T -t nat -I postrouting_rule -o tnl_+ -j MASQUERADE for IPT in $IP4T $IP6T; do $IPT -I forwarding_rule -o tnl_+ -j ACCEPT - if [ "$nowan"="0" ]; then + if [ "$nowan" = '0' ]; then for IFACE in $wanifnames; do $IPT -A forwarding_rule -i tunl0 -o $IFACE -j ACCEPT done