aiccu: Fix typo
authorThomas Bahn <Thomas-Bahn@gmx.net>
Wed, 6 Aug 2014 17:40:02 +0000 (19:40 +0200)
committerSteven Barth <steven@midlink.org>
Thu, 7 Aug 2014 06:35:46 +0000 (08:35 +0200)
The option 'tunnel_id' from aiccu is called 'tunnelid' in the UCI config file.

ipv6/aiccu/files/aiccu.sh

index 4340b2f4e6f94b2c5de94d4546f89d839f80912c..669e0e257fbbc215c7e106d48e82dea481992185 100755 (executable)
@@ -34,7 +34,7 @@ proto_aiccu_setup() {
        echo "ipv6_interface $link"   >> "$CFGFILE"
        [ -n "$server" ] && echo "server $server" >> "$CFGFILE"
        [ -n "$protocol" ] && echo "protocol $protocol" >> "$CFGFILE"
-       [ -n "$tunnel_id" ] && echo "tunnel_id $tunnel_id"        >> "$CFGFILE"
+       [ -n "$tunnelid" ] && echo "tunnel_id $tunnelid"          >> "$CFGFILE"
        [ -n "$requiretls" ] && echo "requiretls $requiretls"      >> "$CFGFILE"
        [ "$nat" == 1 ] && echo "behindnat true"     >> "$CFGFILE"
        [ "$heartbeat"  == 1 ] && echo "makebeats true" >> "$CFGFILE"