From 05b0c46db7ed1587a2671dd7c45f322e81c9238b Mon Sep 17 00:00:00 2001 From: Thomas Bahn Date: Wed, 6 Aug 2014 19:40:02 +0200 Subject: [PATCH] aiccu: Fix typo The option 'tunnel_id' from aiccu is called 'tunnelid' in the UCI config file. --- ipv6/aiccu/files/aiccu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipv6/aiccu/files/aiccu.sh b/ipv6/aiccu/files/aiccu.sh index 4340b2f4e..669e0e257 100755 --- a/ipv6/aiccu/files/aiccu.sh +++ b/ipv6/aiccu/files/aiccu.sh @@ -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"