aiccu: fix requiretls option handling 956/head
authorJan Sembera <jsembera@google.com>
Wed, 25 Feb 2015 21:05:49 +0000 (22:05 +0100)
committerJan Sembera <fis@bofh.cz>
Mon, 2 Mar 2015 20:43:53 +0000 (21:43 +0100)
requiretls is a boolean value in aiccu config that only accepts true and
false as values, not "1" or "0" that UCI provides.

Signed-off-by: Jan Sembera <jsembera@google.com>
ipv6/aiccu/files/aiccu.sh

index 38d8191f502fdc3ab9e3e1508238532081c874c3..584574b74f46e802545b92a0c98e4e4c10a20020 100755 (executable)
@@ -36,7 +36,7 @@ proto_aiccu_setup() {
        [ -n "$server" ] && echo "server $server" >> "$CFGFILE"
        [ -n "$protocol" ] && echo "protocol $protocol" >> "$CFGFILE"
        [ -n "$tunnelid" ] && echo "tunnel_id $tunnelid" >> "$CFGFILE"
-       [ -n "$requiretls" ] && echo "requiretls $requiretls" >> "$CFGFILE"
+       [ "$requiretls" == 1 ] && echo "requiretls true" >> "$CFGFILE"
        [ "$nat" == 1 ] && echo "behindnat true" >> "$CFGFILE"
        [ "$heartbeat" == 1 ] && echo "makebeats true" >> "$CFGFILE"
        [ "$verbose" == 1 ] && echo "verbose true" >> "$CFGFILE"