diff options
author | Ondřej Caletka <ondrej@caletka.cz> | 2014-11-30 18:46:01 +0100 |
---|---|---|
committer | Ondřej Caletka <ondrej@caletka.cz> | 2014-12-01 15:15:35 +0100 |
commit | f6242bdf77b5258d607899a67f6558c73fe47399 (patch) | |
tree | 76d52df9f9ea7d21491c5580d3d735302d27efee /ipv6 | |
parent | 38befcd838e3c8bc6953dd2dd30126d8a4186f56 (diff) |
aiccu: Minor whitespace fix
Signed-off-by: Ondrej Caletka <Ondrej@Caletka.cz>
Diffstat (limited to 'ipv6')
-rwxr-xr-x | ipv6/aiccu/files/aiccu.sh | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/ipv6/aiccu/files/aiccu.sh b/ipv6/aiccu/files/aiccu.sh index 669e0e257..f38a75c74 100755 --- a/ipv6/aiccu/files/aiccu.sh +++ b/ipv6/aiccu/files/aiccu.sh @@ -31,17 +31,18 @@ proto_aiccu_setup() { echo "username $username" > "$CFGFILE" echo "password $password" >> "$CFGFILE" - echo "ipv6_interface $link" >> "$CFGFILE" + echo "ipv6_interface $link" >> "$CFGFILE" [ -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" - [ "$nat" == 1 ] && echo "behindnat true" >> "$CFGFILE" - [ "$heartbeat" == 1 ] && echo "makebeats true" >> "$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" [ "$verbose" == 1 ] && echo "verbose true" >> "$CFGFILE" echo "defaultroute false" >> "$CFGFILE" - echo "daemonize true" >> "$CFGFILE" - echo "pidfile $PIDFILE" >> "$CFGFILE" + echo "daemonize true" >> "$CFGFILE" + echo "pidfile $PIDFILE" >> "$CFGFILE" + aiccu start "$CFGFILE" |