Browse Source

aiccu: Fix typo

The option 'tunnel_id' from aiccu is called 'tunnelid' in the UCI config file.
Thomas Bahn 10 years ago
parent
commit
05b0c46db7
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      ipv6/aiccu/files/aiccu.sh

+ 1
- 1
ipv6/aiccu/files/aiccu.sh View File

@@ -34,7 +34,7 @@ proto_aiccu_setup() {
34 34
 	echo "ipv6_interface $link"   >> "$CFGFILE"
35 35
 	[ -n "$server" ] && echo "server $server" >> "$CFGFILE"
36 36
 	[ -n "$protocol" ] && echo "protocol $protocol" >> "$CFGFILE"
37
-	[ -n "$tunnel_id" ] && echo "tunnel_id $tunnel_id"	  >> "$CFGFILE"
37
+	[ -n "$tunnelid" ] && echo "tunnel_id $tunnelid"	  >> "$CFGFILE"
38 38
 	[ -n "$requiretls" ] && echo "requiretls $requiretls"	   >> "$CFGFILE"
39 39
 	[ "$nat" == 1 ] && echo "behindnat true"     >> "$CFGFILE"
40 40
 	[ "$heartbeat"	== 1 ] && echo "makebeats true" >> "$CFGFILE"