diff options
author | Thomas Bahn <Thomas-Bahn@gmx.net> | 2014-08-06 19:40:02 +0200 |
---|---|---|
committer | Thomas Bahn <Thomas-Bahn@gmx.net> | 2014-08-06 19:40:02 +0200 |
commit | 05b0c46db7ed1587a2671dd7c45f322e81c9238b (patch) | |
tree | a685ce9b8c58039e8396e5e1342a1d50cae55475 /ipv6 | |
parent | a9ea397c984f52cd5ffc0416bd2edca613230706 (diff) |
aiccu: Fix typo
The option 'tunnel_id' from aiccu is called 'tunnelid' in the UCI config file.
Diffstat (limited to 'ipv6')
-rwxr-xr-x | ipv6/aiccu/files/aiccu.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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" |