Explorar el Código

aiccu: Minor whitespace fix

Signed-off-by: Ondrej Caletka <Ondrej@Caletka.cz>
Ondřej Caletka hace 10 años
padre
commit
f6242bdf77
Se han modificado 1 ficheros con 8 adiciones y 7 borrados
  1. 8
    7
      ipv6/aiccu/files/aiccu.sh

+ 8
- 7
ipv6/aiccu/files/aiccu.sh Ver fichero

@@ -31,17 +31,18 @@ proto_aiccu_setup() {
31 31
 
32 32
 	echo "username $username" > "$CFGFILE"
33 33
 	echo "password $password" >> "$CFGFILE"
34
-	echo "ipv6_interface $link"   >> "$CFGFILE"
34
+	echo "ipv6_interface $link" >> "$CFGFILE"
35 35
 	[ -n "$server" ] && echo "server $server" >> "$CFGFILE"
36 36
 	[ -n "$protocol" ] && echo "protocol $protocol" >> "$CFGFILE"
37
-	[ -n "$tunnelid" ] && echo "tunnel_id $tunnelid"	  >> "$CFGFILE"
38
-	[ -n "$requiretls" ] && echo "requiretls $requiretls"	   >> "$CFGFILE"
39
-	[ "$nat" == 1 ] && echo "behindnat true"     >> "$CFGFILE"
40
-	[ "$heartbeat"	== 1 ] && echo "makebeats true" >> "$CFGFILE"
37
+	[ -n "$tunnelid" ] && echo "tunnel_id $tunnelid" >> "$CFGFILE"
38
+	[ -n "$requiretls" ] && echo "requiretls $requiretls" >> "$CFGFILE"
39
+	[ "$nat" == 1 ] && echo "behindnat true" >> "$CFGFILE"
40
+	[ "$heartbeat" == 1 ] && echo "makebeats true" >> "$CFGFILE"
41 41
 	[ "$verbose" == 1 ] && echo "verbose true" >> "$CFGFILE"
42 42
 	echo "defaultroute false" >> "$CFGFILE"
43
-	echo "daemonize true"	  >> "$CFGFILE"
44
-	echo "pidfile $PIDFILE"   >> "$CFGFILE"
43
+	echo "daemonize true" >> "$CFGFILE"
44
+	echo "pidfile $PIDFILE" >> "$CFGFILE"
45
+
45 46
 
46 47
 	aiccu start "$CFGFILE"
47 48