Преглед на файлове

Standardise password lengths

Bob Mottram преди 8 години
родител
ревизия
152360ab96
променени са 8 файла, в които са добавени 223 реда и са изтрити 165 реда
  1. 16
    16
      src/freedombone
  2. 11
    1
      src/freedombone-adduser
  3. 12
    5
      src/freedombone-config
  4. 23
    16
      src/freedombone-controlpanel
  5. 8
    1
      src/freedombone-image
  6. 12
    1
      src/freedombone-image-customise
  7. 7
    0
      src/freedombone-mirrors
  8. 134
    125
      src/freedombone-remote

+ 16
- 16
src/freedombone Целия файл

6188
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
6188
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
6189
 			MARIADB_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
6189
 			MARIADB_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
6190
 		else
6190
 		else
6191
-			MARIADB_PASSWORD="$(openssl rand -base64 32 | cut -c1-30)"
6191
+			MARIADB_PASSWORD="$(openssl rand -base64 32 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
6192
 		fi
6192
 		fi
6193
 		echo "$MARIADB_PASSWORD" > $DATABASE_PASSWORD_FILE
6193
 		echo "$MARIADB_PASSWORD" > $DATABASE_PASSWORD_FILE
6194
 		chmod 600 $DATABASE_PASSWORD_FILE
6194
 		chmod 600 $DATABASE_PASSWORD_FILE
6547
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
6547
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
6548
 			GIT_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
6548
 			GIT_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
6549
 		else
6549
 		else
6550
-			GIT_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-30)"
6550
+			GIT_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
6551
 		fi
6551
 		fi
6552
 	fi
6552
 	fi
6553
 
6553
 
6742
 	if grep -q "Gogs secret key:" /home/$MY_USERNAME/README; then
6742
 	if grep -q "Gogs secret key:" /home/$MY_USERNAME/README; then
6743
 		GOGS_SECRET_KEY=$(cat /home/$MY_USERNAME/README | grep "Gogs secret key:" | awk -F ':' '{print $2}' | sed 's/^ *//')
6743
 		GOGS_SECRET_KEY=$(cat /home/$MY_USERNAME/README | grep "Gogs secret key:" | awk -F ':' '{print $2}' | sed 's/^ *//')
6744
 	else
6744
 	else
6745
-		GOGS_SECRET_KEY="$(openssl rand -base64 20 | cut -c1-18)"
6745
+		GOGS_SECRET_KEY="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
6746
 		echo "Gogs secret key:$GOGS_SECRET_KEY" >> /home/$MY_USERNAME/README
6746
 		echo "Gogs secret key:$GOGS_SECRET_KEY" >> /home/$MY_USERNAME/README
6747
 		chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/README
6747
 		chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/README
6748
 	fi
6748
 	fi
7134
 			if [ -f $IMAGE_PASSWORD_FILE ]; then
7134
 			if [ -f $IMAGE_PASSWORD_FILE ]; then
7135
 				XMPP_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
7135
 				XMPP_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
7136
 			else
7136
 			else
7137
-				XMPP_PASSWORD="$(openssl rand -base64 10 | cut -c1-8)"
7137
+				XMPP_PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
7138
 			fi
7138
 			fi
7139
 		fi
7139
 		fi
7140
 		prosodyctl register $MY_USERNAME $DEFAULT_DOMAIN_NAME $XMPP_PASSWORD
7140
 		prosodyctl register $MY_USERNAME $DEFAULT_DOMAIN_NAME $XMPP_PASSWORD
7347
 
7347
 
7348
 	# create a login password if needed
7348
 	# create a login password if needed
7349
 	if [ ! $IRC_PASSWORD ]; then
7349
 	if [ ! $IRC_PASSWORD ]; then
7350
-		IRC_PASSWORD="$(openssl rand -base64 32 | cut -c1-10)"
7350
+		IRC_PASSWORD="$(openssl rand -base64 32 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
7351
 	fi
7351
 	fi
7352
 
7352
 
7353
 	echo '**************************************************' > /etc/ngircd/motd
7353
 	echo '**************************************************' > /etc/ngircd/motd
7374
 	if [ -f $IMAGE_PASSWORD_FILE ]; then
7374
 	if [ -f $IMAGE_PASSWORD_FILE ]; then
7375
 		IRC_OPERATOR_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
7375
 		IRC_OPERATOR_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
7376
 	else
7376
 	else
7377
-		IRC_OPERATOR_PASSWORD="$(openssl rand -base64 10 | cut -c1-8)"
7377
+		IRC_OPERATOR_PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
7378
 	fi
7378
 	fi
7379
 	sed -i "s|;CloakHostSalt = abcdefghijklmnopqrstuvwxyz|CloakHostSalt = $IRC_SALT|g" /etc/ngircd/ngircd.conf
7379
 	sed -i "s|;CloakHostSalt = abcdefghijklmnopqrstuvwxyz|CloakHostSalt = $IRC_SALT|g" /etc/ngircd/ngircd.conf
7380
 	sed -i 's/;ConnectIPv4 = yes/ConnectIPv4 = yes/g' /etc/ngircd/ngircd.conf
7380
 	sed -i 's/;ConnectIPv4 = yes/ConnectIPv4 = yes/g' /etc/ngircd/ngircd.conf
7512
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
7512
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
7513
 			WIKI_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
7513
 			WIKI_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
7514
 		else
7514
 		else
7515
-			WIKI_ADMIN_PASSWORD="$(openssl rand -base64 18 | cut -c1-16)"
7515
+			WIKI_ADMIN_PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
7516
 		fi
7516
 		fi
7517
 	fi
7517
 	fi
7518
 	HASHED_WIKI_PASSWORD=$(echo -n "$WIKI_ADMIN_PASSWORD" | md5sum | awk -F ' ' '{print $1}')
7518
 	HASHED_WIKI_PASSWORD=$(echo -n "$WIKI_ADMIN_PASSWORD" | md5sum | awk -F ' ' '{print $1}')
8117
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
8117
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
8118
 			FULLBLOG_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
8118
 			FULLBLOG_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
8119
 		else
8119
 		else
8120
-			FULLBLOG_ADMIN_PASSWORD="$(openssl rand -base64 18 | cut -c1-16)"
8120
+			FULLBLOG_ADMIN_PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
8121
 		fi
8121
 		fi
8122
 		echo '' >> /home/$MY_USERNAME/README
8122
 		echo '' >> /home/$MY_USERNAME/README
8123
 		echo '' >> /home/$MY_USERNAME/README
8123
 		echo '' >> /home/$MY_USERNAME/README
8203
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
8203
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
8204
 			RSS_READER_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
8204
 			RSS_READER_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
8205
 		else
8205
 		else
8206
-			RSS_READER_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-30)"
8206
+			RSS_READER_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
8207
 		fi
8207
 		fi
8208
 	fi
8208
 	fi
8209
 
8209
 
8573
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
8573
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
8574
 			MICROBLOG_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
8574
 			MICROBLOG_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
8575
 		else
8575
 		else
8576
-			MICROBLOG_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-30)"
8576
+			MICROBLOG_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
8577
 		fi
8577
 		fi
8578
 	fi
8578
 	fi
8579
 
8579
 
9278
 			if [ -f $IMAGE_PASSWORD_FILE ]; then
9278
 			if [ -f $IMAGE_PASSWORD_FILE ]; then
9279
 				SEARCH_ENGINE_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
9279
 				SEARCH_ENGINE_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
9280
 			else
9280
 			else
9281
-				SEARCH_ENGINE_PASSWORD="$(openssl rand -base64 18 | cut -c1-16)"
9281
+				SEARCH_ENGINE_PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
9282
 			fi
9282
 			fi
9283
 		fi
9283
 		fi
9284
 		echo "$SEARCH_ENGINE_PASSWORD" | htpasswd -i -s -c /etc/nginx/.htpasswd $MY_USERNAME
9284
 		echo "$SEARCH_ENGINE_PASSWORD" | htpasswd -i -s -c /etc/nginx/.htpasswd $MY_USERNAME
9347
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
9347
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
9348
 			WEBMAIL_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
9348
 			WEBMAIL_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
9349
 		else
9349
 		else
9350
-			WEBMAIL_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-30)"
9350
+			WEBMAIL_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
9351
 		fi
9351
 		fi
9352
 	fi
9352
 	fi
9353
 	create_database webmail "$WEBMAIL_ADMIN_PASSWORD"
9353
 	create_database webmail "$WEBMAIL_ADMIN_PASSWORD"
9513
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
9513
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
9514
 			HUBZILLA_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
9514
 			HUBZILLA_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
9515
 		else
9515
 		else
9516
-			HUBZILLA_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-30)"
9516
+			HUBZILLA_ADMIN_PASSWORD="$(openssl rand -base64 32 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
9517
 		fi
9517
 		fi
9518
 		echo '' >> /home/$MY_USERNAME/README
9518
 		echo '' >> /home/$MY_USERNAME/README
9519
 		echo '' >> /home/$MY_USERNAME/README
9519
 		echo '' >> /home/$MY_USERNAME/README
10645
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
10645
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
10646
 			VOIP_SERVER_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
10646
 			VOIP_SERVER_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
10647
 		else
10647
 		else
10648
-			VOIP_SERVER_PASSWORD="$(openssl rand -base64 18 | cut -c1-16)"
10648
+			VOIP_SERVER_PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
10649
 			if [ ${#VOIP_SERVER_PASSWORD} -lt $MINIMUM_PASSWORD_LENGTH ]; then
10649
 			if [ ${#VOIP_SERVER_PASSWORD} -lt $MINIMUM_PASSWORD_LENGTH ]; then
10650
-				VOIP_SERVER_PASSWORD="$(openssl rand -base64 18 | cut -c1-16)"
10650
+				VOIP_SERVER_PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
10651
 			fi
10651
 			fi
10652
 		fi
10652
 		fi
10653
 	fi
10653
 	fi
10778
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
10778
 		if [ -f $IMAGE_PASSWORD_FILE ]; then
10779
 			SIP_SERVER_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
10779
 			SIP_SERVER_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
10780
 		else
10780
 		else
10781
-			SIP_SERVER_PASSWORD="$(openssl rand -base64 12 | cut -c1-10)"
10781
+			SIP_SERVER_PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
10782
 		fi
10782
 		fi
10783
 	fi
10783
 	fi
10784
 
10784
 

+ 11
- 1
src/freedombone-adduser Целия файл

61
 	exit 3
61
 	exit 3
62
 fi
62
 fi
63
 
63
 
64
-NEW_USER_PASSWORD="$(openssl rand -base64 10 | cut -c1-8)"
64
+# Minimum number of characters in a password
65
+MINIMUM_PASSWORD_LENGTH=10
66
+if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
67
+	MINIMUM_PASSWORD_LENGTH=$(cat /usr/local/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
68
+else
69
+	if [ -f /usr/bin/${PROJECT_NAME} ]; then
70
+		MINIMUM_PASSWORD_LENGTH=$(cat /usr/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
71
+	fi
72
+fi
73
+
74
+NEW_USER_PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
65
 useradd -m -p "$NEW_USER_PASSWORD" -s /bin/bash $MY_USERNAME
75
 useradd -m -p "$NEW_USER_PASSWORD" -s /bin/bash $MY_USERNAME
66
 adduser $MY_USERNAME sasl
76
 adduser $MY_USERNAME sasl
67
 
77
 

+ 12
- 5
src/freedombone-config Целия файл

44
 
44
 
45
 # Minimum number of characters in a password
45
 # Minimum number of characters in a password
46
 MINIMUM_PASSWORD_LENGTH=10
46
 MINIMUM_PASSWORD_LENGTH=10
47
+if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
48
+	MINIMUM_PASSWORD_LENGTH=$(cat /usr/local/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
49
+else
50
+	if [ -f /usr/bin/${PROJECT_NAME} ]; then
51
+		MINIMUM_PASSWORD_LENGTH=$(cat /usr/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
52
+	fi
53
+fi
47
 
54
 
48
 # file containing new password
55
 # file containing new password
49
 IMAGE_PASSWORD_FILE=/root/login.txt
56
 IMAGE_PASSWORD_FILE=/root/login.txt
849
         if [ ! $WIFI_SSID ]; then
856
         if [ ! $WIFI_SSID ]; then
850
             WIFI_SSID='mesh'
857
             WIFI_SSID='mesh'
851
         fi
858
         fi
852
-        
859
+
853
         #data=$(tempfile 2>/dev/null)
860
         #data=$(tempfile 2>/dev/null)
854
         #trap "rm -f $data" 0 1 2 5 15
861
         #trap "rm -f $data" 0 1 2 5 15
855
         #dialog --backtitle "Freedombone Configuration" \
862
         #dialog --backtitle "Freedombone Configuration" \
1073
         done
1080
         done
1074
         save_configuration_file
1081
         save_configuration_file
1075
     fi
1082
     fi
1076
-    
1083
+
1077
     if [[ $MINIMAL_INSTALL == "no" ]]; then
1084
     if [[ $MINIMAL_INSTALL == "no" ]]; then
1078
         if [[ $(grep "INSTALLING_ON_BBB" temp.cfg | awk -F '=' '{print $2}') == "yes" ]]; then
1085
         if [[ $(grep "INSTALLING_ON_BBB" temp.cfg | awk -F '=' '{print $2}') == "yes" ]]; then
1079
             dialog --title $"Install Target" \
1086
             dialog --title $"Install Target" \
1351
         NAMESERVER1='85.214.73.63'
1358
         NAMESERVER1='85.214.73.63'
1352
         NAMESERVER2='213.73.91.35'
1359
         NAMESERVER2='213.73.91.35'
1353
     fi
1360
     fi
1354
-    
1361
+
1355
     if [[ $SYSTEM_TYPE != "$VARIANT_MESH" ]]; then
1362
     if [[ $SYSTEM_TYPE != "$VARIANT_MESH" ]]; then
1356
 		${PROJECT_NAME}-wifi --networksinteractive $WIFI_NETWORKS_FILE
1363
 		${PROJECT_NAME}-wifi --networksinteractive $WIFI_NETWORKS_FILE
1357
     fi
1364
     fi
1358
-    
1365
+
1359
     if [[ $SYSTEM_TYPE != "$VARIANT_MESH" && $ONION_ONLY == "no" ]]; then
1366
     if [[ $SYSTEM_TYPE != "$VARIANT_MESH" && $ONION_ONLY == "no" ]]; then
1360
 
1367
 
1361
         data=$(tempfile 2>/dev/null)
1368
         data=$(tempfile 2>/dev/null)
1675
             save_configuration_file
1682
             save_configuration_file
1676
         fi
1683
         fi
1677
     fi
1684
     fi
1678
-    
1685
+
1679
 
1686
 
1680
     if [[ $SYSTEM_TYPE == "$VARIANT_SOCIAL" || $SYSTEM_TYPE == "$VARIANT_FULL" ]]; then
1687
     if [[ $SYSTEM_TYPE == "$VARIANT_SOCIAL" || $SYSTEM_TYPE == "$VARIANT_FULL" ]]; then
1681
         if [[ $ONION_ONLY != "no" ]]; then
1688
         if [[ $ONION_ONLY != "no" ]]; then

+ 23
- 16
src/freedombone-controlpanel Целия файл

41
 UPDATE_DATE_SCRIPT=/usr/bin/updatedate
41
 UPDATE_DATE_SCRIPT=/usr/bin/updatedate
42
 
42
 
43
 # Minimum number of characters in a password
43
 # Minimum number of characters in a password
44
-MINIMUM_PASSWORD_LENGTH=8
44
+MINIMUM_PASSWORD_LENGTH=10
45
+if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
46
+	MINIMUM_PASSWORD_LENGTH=$(cat /usr/local/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
47
+else
48
+	if [ -f /usr/bin/${PROJECT_NAME} ]; then
49
+		MINIMUM_PASSWORD_LENGTH=$(cat /usr/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
50
+	fi
51
+fi
45
 
52
 
46
 # voip
53
 # voip
47
 VOIP_PORT=64738
54
 VOIP_PORT=64738
143
 }
150
 }
144
 
151
 
145
 function read_repo_servers {
152
 function read_repo_servers {
146
-    if [ -f $CONFIGURATION_FILE ]; then     
153
+    if [ -f $CONFIGURATION_FILE ]; then
147
         if grep -q "FRIENDS_MIRRORS_SERVER" $CONFIGURATION_FILE; then
154
         if grep -q "FRIENDS_MIRRORS_SERVER" $CONFIGURATION_FILE; then
148
             FRIENDS_MIRRORS_SERVER=$(grep "FRIENDS_MIRRORS_SERVER" $CONFIGURATION_FILE | awk -F '=' '{print $2}')
155
             FRIENDS_MIRRORS_SERVER=$(grep "FRIENDS_MIRRORS_SERVER" $CONFIGURATION_FILE | awk -F '=' '{print $2}')
149
         fi
156
         fi
523
     if [ ! -f $MUTTRC_FILE ]; then
530
     if [ ! -f $MUTTRC_FILE ]; then
524
         return
531
         return
525
     fi
532
     fi
526
-    
533
+
527
     data=$(tempfile 2>/dev/null)
534
     data=$(tempfile 2>/dev/null)
528
     trap "rm -f $data" 0 1 2 5 15
535
     trap "rm -f $data" 0 1 2 5 15
529
     dialog --backtitle $"Freedombone Control Panel" \
536
     dialog --backtitle $"Freedombone Control Panel" \
554
             echo "set smtp_url=\"${SMTP_PROXY_PROTOCOL}://${SMTP_PROXY_USERNAME}:${SMTP_PROXY_PASSWORD}@${SMTP_PROXY_SERVER}:${SMTP_PROXY_PORT}/\"" >> $MUTTRC_FILE
561
             echo "set smtp_url=\"${SMTP_PROXY_PROTOCOL}://${SMTP_PROXY_USERNAME}:${SMTP_PROXY_PASSWORD}@${SMTP_PROXY_SERVER}:${SMTP_PROXY_PORT}/\"" >> $MUTTRC_FILE
555
         else
562
         else
556
             sed -i "s|set smtp_url=.*|set smtp_url=\"${SMTP_PROXY_PROTOCOL}://${SMTP_PROXY_USERNAME}:${SMTP_PROXY_PASSWORD}@${SMTP_PROXY_SERVER}:${SMTP_PROXY_PORT}/\"|g" $MUTTRC_FILE
563
             sed -i "s|set smtp_url=.*|set smtp_url=\"${SMTP_PROXY_PROTOCOL}://${SMTP_PROXY_USERNAME}:${SMTP_PROXY_PASSWORD}@${SMTP_PROXY_SERVER}:${SMTP_PROXY_PORT}/\"|g" $MUTTRC_FILE
557
-        fi          
564
+        fi
558
         sed -i 's|#set smtp_url|set smtp_url|g' $MUTTRC_FILE
565
         sed -i 's|#set smtp_url|set smtp_url|g' $MUTTRC_FILE
559
     else
566
     else
560
         if grep "set smtp_url" $MUTTRC_FILE; then
567
         if grep "set smtp_url" $MUTTRC_FILE; then
678
                     if [ -f /home/$IRC_USERNAME/.irssi/config ]; then
685
                     if [ -f /home/$IRC_USERNAME/.irssi/config ]; then
679
                         sed -i "s|$EXISTING_IRC_PASSWORD|$NEW_IRC_PASSWORD|g" /home/$IRC_USERNAME/.irssi/config
686
                         sed -i "s|$EXISTING_IRC_PASSWORD|$NEW_IRC_PASSWORD|g" /home/$IRC_USERNAME/.irssi/config
680
                         chown -R $IRC_USERNAME:$IRC_USERNAME /home/$IRC_USERNAME/.irssi
687
                         chown -R $IRC_USERNAME:$IRC_USERNAME /home/$IRC_USERNAME/.irssi
681
-                    fi                  
688
+                    fi
682
                 fi
689
                 fi
683
             done
690
             done
684
 
691
 
685
             # restart the daemon for the new password to take effect
692
             # restart the daemon for the new password to take effect
686
             systemctl restart ngircd
693
             systemctl restart ngircd
687
-            
694
+
688
             dialog --title $"IRC Password" \
695
             dialog --title $"IRC Password" \
689
                    --msgbox $"The IRC password was changed" 6 40
696
                    --msgbox $"The IRC password was changed" 6 40
690
             ;;
697
             ;;
708
                     dialog --title $"Change blog avatar" \
715
                     dialog --title $"Change blog avatar" \
709
                            --msgbox $"Your blog avatar has been changed" 6 40
716
                            --msgbox $"Your blog avatar has been changed" 6 40
710
                 fi
717
                 fi
711
-            fi          
718
+            fi
712
             ;;
719
             ;;
713
     esac
720
     esac
714
 }
721
 }
1737
     esac
1744
     esac
1738
     TEMP_WIFI_HOTSPOT=$(cat $data | sed -n 1p)
1745
     TEMP_WIFI_HOTSPOT=$(cat $data | sed -n 1p)
1739
     TEMP_WIFI_SSID=$(cat $data | sed -n 2p)
1746
     TEMP_WIFI_SSID=$(cat $data | sed -n 2p)
1740
-    TEMP_WIFI_TYPE=$(cat $data | sed -n 3p)    
1747
+    TEMP_WIFI_TYPE=$(cat $data | sed -n 3p)
1741
     TEMP_WIFI_PASSPHRASE=$(cat $data | sed -n 4p)
1748
     TEMP_WIFI_PASSPHRASE=$(cat $data | sed -n 4p)
1742
 
1749
 
1743
     if [ ${#TEMP_WIFI_SSID} -lt 2 ]; then
1750
     if [ ${#TEMP_WIFI_SSID} -lt 2 ]; then
1768
                    --msgbox $"Wifi hotspot passphrase was too short" 6 40
1775
                    --msgbox $"Wifi hotspot passphrase was too short" 6 40
1769
             return
1776
             return
1770
         fi
1777
         fi
1771
-        
1778
+
1772
         WIFI_HOTSPOT=$TEMP_WIFI_HOTSPOT
1779
         WIFI_HOTSPOT=$TEMP_WIFI_HOTSPOT
1773
         WIFI_SSID=$TEMP_WIFI_SSID
1780
         WIFI_SSID=$TEMP_WIFI_SSID
1774
         WIFI_TYPE=$TEMP_WIFI_TYPE
1781
         WIFI_TYPE=$TEMP_WIFI_TYPE
1775
         WIFI_PASSPHRASE=$TEMP_WIFI_PASSPHRASE
1782
         WIFI_PASSPHRASE=$TEMP_WIFI_PASSPHRASE
1776
-        
1783
+
1777
         ${PROJECT_NAME}-wifi -i $WIFI_INTERFACE -s $WIFI_SSID -t $WIFI_TYPE -p $WIFI_PASSPHRASE --hotspot $WIFI_HOTSPOT $WIFI_EXTRA
1784
         ${PROJECT_NAME}-wifi -i $WIFI_INTERFACE -s $WIFI_SSID -t $WIFI_TYPE -p $WIFI_PASSPHRASE --hotspot $WIFI_HOTSPOT $WIFI_EXTRA
1778
     else
1785
     else
1779
         WIFI_HOTSPOT=$TEMP_WIFI_HOTSPOT
1786
         WIFI_HOTSPOT=$TEMP_WIFI_HOTSPOT
1780
         WIFI_SSID=$TEMP_WIFI_SSID
1787
         WIFI_SSID=$TEMP_WIFI_SSID
1781
         WIFI_TYPE=$TEMP_WIFI_TYPE
1788
         WIFI_TYPE=$TEMP_WIFI_TYPE
1782
         WIFI_PASSPHRASE=$TEMP_WIFI_PASSPHRASE
1789
         WIFI_PASSPHRASE=$TEMP_WIFI_PASSPHRASE
1783
-        
1790
+
1784
         ${PROJECT_NAME}-wifi -i $WIFI_INTERFACE -s $WIFI_SSID -t $WIFI_TYPE --hotspot $WIFI_HOTSPOT $WIFI_EXTRA
1791
         ${PROJECT_NAME}-wifi -i $WIFI_INTERFACE -s $WIFI_SSID -t $WIFI_TYPE --hotspot $WIFI_HOTSPOT $WIFI_EXTRA
1785
     fi
1792
     fi
1786
 
1793
 
1805
     else
1812
     else
1806
         sed -i "s|WIFI_PASSPHRASE=.*|WIFI_PASSPHRASE=$WIFI_PASSPHRASE|g" $CONFIGURATION_FILE
1813
         sed -i "s|WIFI_PASSPHRASE=.*|WIFI_PASSPHRASE=$WIFI_PASSPHRASE|g" $CONFIGURATION_FILE
1807
     fi
1814
     fi
1808
-    
1815
+
1809
     dialog --title $"Wifi Settings" \
1816
     dialog --title $"Wifi Settings" \
1810
            --msgbox $"Hotspot settings were changed" 6 40
1817
            --msgbox $"Hotspot settings were changed" 6 40
1811
 }
1818
 }
1970
     ${PROJECT_NAME}-wifi --disable $disable_wifi
1977
     ${PROJECT_NAME}-wifi --disable $disable_wifi
1971
 }
1978
 }
1972
 
1979
 
1973
-function menu_wifi {    
1980
+function menu_wifi {
1974
     while true
1981
     while true
1975
     do
1982
     do
1976
         status_str=$'Wifi OFF'
1983
         status_str=$'Wifi OFF'
1979
         else
1986
         else
1980
             if grep -q "# wifi enabled" /etc/network/interfaces; then
1987
             if grep -q "# wifi enabled" /etc/network/interfaces; then
1981
                 status_str=$'Wifi ON'
1988
                 status_str=$'Wifi ON'
1982
-            fi          
1989
+            fi
1983
         fi
1990
         fi
1984
-        
1991
+
1985
         data=$(tempfile 2>/dev/null)
1992
         data=$(tempfile 2>/dev/null)
1986
         trap "rm -f $data" 0 1 2 5 15
1993
         trap "rm -f $data" 0 1 2 5 15
1987
         dialog --backtitle $"Freedombone Control Panel" \
1994
         dialog --backtitle $"Freedombone Control Panel" \
2013
                --msgbox $"No IRC server is installed" 6 70
2020
                --msgbox $"No IRC server is installed" 6 70
2014
         return
2021
         return
2015
     fi
2022
     fi
2016
-    
2023
+
2017
     while true
2024
     while true
2018
     do
2025
     do
2019
         data=$(tempfile 2>/dev/null)
2026
         data=$(tempfile 2>/dev/null)

+ 8
- 1
src/freedombone-image Целия файл

77
 
77
 
78
 # Minimum number of characters in a password
78
 # Minimum number of characters in a password
79
 MINIMUM_PASSWORD_LENGTH=10
79
 MINIMUM_PASSWORD_LENGTH=10
80
+if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
81
+	MINIMUM_PASSWORD_LENGTH=$(cat /usr/local/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
82
+else
83
+	if [ -f /usr/bin/${PROJECT_NAME} ]; then
84
+		MINIMUM_PASSWORD_LENGTH=$(cat /usr/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
85
+	fi
86
+fi
80
 
87
 
81
 # Optional ssh public key to allow
88
 # Optional ssh public key to allow
82
 SSH_PUBKEY="no"
89
 SSH_PUBKEY="no"
287
 
294
 
288
 if [ ! $PASSWORD ]; then
295
 if [ ! $PASSWORD ]; then
289
 	# generate a random password
296
 	# generate a random password
290
-	PASSWORD="$(openssl rand -base64 10 | cut -c1-8)"
297
+	PASSWORD="$(openssl rand -base64 30 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
291
 fi
298
 fi
292
 
299
 
293
 # Move any existing images into a build subdirectory
300
 # Move any existing images into a build subdirectory

+ 12
- 1
src/freedombone-image-customise Целия файл

49
 MY_USERNAME='debian'
49
 MY_USERNAME='debian'
50
 MY_PASSWORD="${PROJECT_NAME}"
50
 MY_PASSWORD="${PROJECT_NAME}"
51
 
51
 
52
+# Minimum number of characters in a password
53
+MINIMUM_PASSWORD_LENGTH=10
54
+if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
55
+	MINIMUM_PASSWORD_LENGTH=$(cat /usr/local/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
56
+else
57
+	if [ -f /usr/bin/${PROJECT_NAME} ]; then
58
+		MINIMUM_PASSWORD_LENGTH=$(cat /usr/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
59
+	fi
60
+fi
61
+
52
 # IP address of the router (gateway)
62
 # IP address of the router (gateway)
53
 ROUTER_IP_ADDRESS="192.168.1.254"
63
 ROUTER_IP_ADDRESS="192.168.1.254"
54
 
64
 
283
 	echo "            dialog --backtitle \"${ENTROPY_MESSAGE1}\" --title \"${ENTROPY_MESSAGE2}\" --msgbox \"${ENTROPY_MESSAGE3}\" 8 50" >> $rootdir/root/.bashrc
293
 	echo "            dialog --backtitle \"${ENTROPY_MESSAGE1}\" --title \"${ENTROPY_MESSAGE2}\" --msgbox \"${ENTROPY_MESSAGE3}\" 8 50" >> $rootdir/root/.bashrc
284
 	echo '            exit' >> $rootdir/root/.bashrc
294
 	echo '            exit' >> $rootdir/root/.bashrc
285
 	echo '        fi' >> $rootdir/root/.bashrc
295
 	echo '        fi' >> $rootdir/root/.bashrc
286
-	echo '        NEW_USER_PASSWORD="$(openssl rand -base64 12 | cut -c1-10)"' >> $rootdir/root/.bashrc
296
+	echo -n '        NEW_USER_PASSWORD="$(openssl rand -base64 30 | cut -c1-' >> $rootdir/root/.bashrc
297
+	echo "${MINIMUM_PASSWORD_LENGTH})\"" >> $rootdir/root/.bashrc
287
 	echo '    fi' >> $rootdir/root/.bashrc
298
 	echo '    fi' >> $rootdir/root/.bashrc
288
 	echo '    echo "${NEW_USER_PASSWORD}" > ~/login.txt' >> $rootdir/root/.bashrc
299
 	echo '    echo "${NEW_USER_PASSWORD}" > ~/login.txt' >> $rootdir/root/.bashrc
289
 
300
 

+ 7
- 0
src/freedombone-mirrors Целия файл

35
 
35
 
36
 # Minimum number of characters in a password
36
 # Minimum number of characters in a password
37
 MINIMUM_PASSWORD_LENGTH=10
37
 MINIMUM_PASSWORD_LENGTH=10
38
+if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
39
+	MINIMUM_PASSWORD_LENGTH=$(cat /usr/local/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
40
+else
41
+	if [ -f /usr/bin/${PROJECT_NAME} ]; then
42
+		MINIMUM_PASSWORD_LENGTH=$(cat /usr/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
43
+	fi
44
+fi
38
 
45
 
39
 CONFIGURATION_FILE="/root/${PROJECT_NAME}.cfg"
46
 CONFIGURATION_FILE="/root/${PROJECT_NAME}.cfg"
40
 
47
 

+ 134
- 125
src/freedombone-remote Целия файл

35
 export TEXTDOMAIN=${PROJECT_NAME}-remote
35
 export TEXTDOMAIN=${PROJECT_NAME}-remote
36
 export TEXTDOMAINDIR="/usr/share/locale"
36
 export TEXTDOMAINDIR="/usr/share/locale"
37
 
37
 
38
+CONFIG_FILE=$HOME/${PROJECT_NAME}.cfg
39
+
38
 # User to create the list for
40
 # User to create the list for
39
 MY_USERNAME=$USER
41
 MY_USERNAME=$USER
40
 
42
 
42
 FRIENDS_SERVERS_LIST=
44
 FRIENDS_SERVERS_LIST=
43
 
45
 
44
 # Minimum password length in characters
46
 # Minimum password length in characters
45
-MINIMUM_PASSWORD_LENGTH=8
47
+MINIMUM_PASSWORD_LENGTH=10
48
+if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
49
+	MINIMUM_PASSWORD_LENGTH=$(cat /usr/local/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
50
+else
51
+	if [ -f /usr/bin/${PROJECT_NAME} ]; then
52
+		MINIMUM_PASSWORD_LENGTH=$(cat /usr/bin/${PROJECT_NAME} | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
53
+	fi
54
+fi
46
 
55
 
47
 # How many remote locations were specified
56
 # How many remote locations were specified
48
 entering_remote_backups_ctr=0
57
 entering_remote_backups_ctr=0
78
 key="$1"
87
 key="$1"
79
 
88
 
80
 case $key in
89
 case $key in
81
-    -h|--help)
82
-    show_help
83
-    ;;
84
-    # backup list filename
85
-    # typically /home/$USER/backup.list
86
-    -l|--list)
87
-    shift
88
-    FRIENDS_SERVERS_LIST="$1"
89
-    ;;
90
-    # username within /home
91
-    -u|--user)
92
-    shift
93
-    MY_USERNAME="$1"
94
-    ;;
95
-    # Minimum password length
96
-    -m|--min)
97
-    shift
98
-    MINIMUM_PASSWORD_LENGTH="$1"
99
-    ;;
100
-    # Title shown
101
-    -t|--title)
102
-    shift
103
-    TITLE="$1"
104
-    ;;
105
-    # reciprocal user accounts
106
-    -r|--reciprocal)
107
-    shift
108
-    RECIPROCAL="yes"
109
-    ;;
110
-    *)
111
-    # unknown option
112
-    ;;
90
+	-h|--help)
91
+	show_help
92
+	;;
93
+	# backup list filename
94
+	# typically /home/$USER/backup.list
95
+	-l|--list)
96
+	shift
97
+	FRIENDS_SERVERS_LIST="$1"
98
+	;;
99
+	# username within /home
100
+	-u|--user)
101
+	shift
102
+	MY_USERNAME="$1"
103
+	;;
104
+	# Minimum password length
105
+	-m|--min)
106
+	shift
107
+	MINIMUM_PASSWORD_LENGTH="$1"
108
+	;;
109
+	# Title shown
110
+	-t|--title)
111
+	shift
112
+	TITLE="$1"
113
+	;;
114
+	# reciprocal user accounts
115
+	-r|--reciprocal)
116
+	shift
117
+	RECIPROCAL="yes"
118
+	;;
119
+	*)
120
+	# unknown option
121
+	;;
113
 esac
122
 esac
114
 shift
123
 shift
115
 done
124
 done
116
 
125
 
117
 function interactive_configuration_remote_backups {
126
 function interactive_configuration_remote_backups {
118
   if [ ! $MY_USERNAME ]; then
127
   if [ ! $MY_USERNAME ]; then
119
-      echo $'Please specify a username with the -u option'
120
-      exit 7356
128
+	  echo $'Please specify a username with the -u option'
129
+	  exit 7356
121
   fi
130
   fi
122
 
131
 
123
   if [ ! /home/$MY_USERNAME ]; then
132
   if [ ! /home/$MY_USERNAME ]; then
124
-      echo $"The user /home/$MY_USERNAME does not exist on the system"
125
-      exit 3689
133
+	  echo $"The user /home/$MY_USERNAME does not exist on the system"
134
+	  exit 3689
126
   fi
135
   fi
127
 
136
 
128
   if [ ! $FRIENDS_SERVERS_LIST ]; then
137
   if [ ! $FRIENDS_SERVERS_LIST ]; then
129
-      FRIENDS_SERVERS_LIST=/home/$MY_USERNAME/backup.list
138
+	  FRIENDS_SERVERS_LIST=/home/$MY_USERNAME/backup.list
130
   fi
139
   fi
131
 
140
 
132
   # clear any existing list
141
   # clear any existing list
133
   if [ -f $FRIENDS_SERVERS_LIST ]; then
142
   if [ -f $FRIENDS_SERVERS_LIST ]; then
134
-      rm -f $FRIENDS_SERVERS_LIST
135
-      touch $FRIENDS_SERVERS_LIST
143
+	  rm -f $FRIENDS_SERVERS_LIST
144
+	  touch $FRIENDS_SERVERS_LIST
136
   fi
145
   fi
137
   # number of entries made
146
   # number of entries made
138
   entering_remote_backups_ctr=1
147
   entering_remote_backups_ctr=1
146
   remote_ssh_reciprocal_password=""
155
   remote_ssh_reciprocal_password=""
147
   while [[ $entering_remote_backups_done == "no" ]]
156
   while [[ $entering_remote_backups_done == "no" ]]
148
   do
157
   do
149
-      data=$(tempfile 2>/dev/null)
150
-      trap "rm -f $data" 0 1 2 5 15
151
-      if [[ $RECIPROCAL == "yes" ]]; then
152
-          dialog --backtitle "Freedombone Configuration" \
153
-              --title "$TITLE ${entering_remote_backups_ctr}" \
154
-              --form "\nPlease specify the SSH login details for the remote server\n\nThe reciprocal entries are optional, and can be used if you wish to set up a user account on this system for whoever runs the remote server to also use for backups" 20 50 8 \
155
-              "Username:" 1 1 "$remote_ssh_username" 1 23 16 15 \
156
-              "Domain:" 2 1 "$remote_ssh_domain" 2 23 16 15 \
157
-              "SSH port:" 3 1 "2222" 3 23 5 4 \
158
-              "Password:" 4 1 "$remote_ssh_password" 4 23 20 100 \
159
-              "Reciprocal Username:" 5 1 "$remote_ssh_reciprocal_username" 5 23 20 100 \
160
-              "Reciprocal Password:" 6 1 "$remote_ssh_reciprocal_password" 6 23 20 100 \
161
-              2> $data
162
-      else
163
-          dialog --backtitle "Freedombone Configuration" \
164
-              --title "$TITLE ${entering_remote_backups_ctr}" \
165
-              --form "\nPlease specify the SSH login details for the remote server" 15 50 4 \
166
-              "Username:" 1 1 "$remote_ssh_username" 1 23 16 15 \
167
-              "Domain:" 2 1 "$remote_ssh_domain" 2 23 16 15 \
168
-              "SSH port:" 3 1 "2222" 3 23 5 4 \
169
-              "Password:" 4 1 "$remote_ssh_password" 4 23 20 100 \
170
-              2> $data
171
-      fi
172
-      sel=$?
173
-      case $sel in
174
-          1) entering_remote_backups_done="yes";;
175
-          255) entering_remote_backups_done="yes";;
176
-      esac
177
-      remote_ssh_username=$(cat $data | sed -n 1p)
178
-      remote_ssh_domain=$(cat $data | sed -n 2p)
179
-      remote_ssh_port=$(cat $data | sed -n 3p)
180
-      remote_ssh_password=$(cat $data | sed -n 4p)
181
-      remote_ssh_reciprocal_username=$(cat $data | sed -n 5p)
182
-      remote_ssh_reciprocal_password=$(cat $data | sed -n 6p)
183
-      if [[ $remote_ssh_username != "" && \
184
-          $remote_ssh_domain != "" && \
185
-          $remote_ssh_port != "" && \
186
-          $remote_ssh_password != "" ]]; then
158
+	  data=$(tempfile 2>/dev/null)
159
+	  trap "rm -f $data" 0 1 2 5 15
160
+	  if [[ $RECIPROCAL == "yes" ]]; then
161
+		  dialog --backtitle "Freedombone Configuration" \
162
+			  --title "$TITLE ${entering_remote_backups_ctr}" \
163
+			  --form "\nPlease specify the SSH login details for the remote server\n\nThe reciprocal entries are optional, and can be used if you wish to set up a user account on this system for whoever runs the remote server to also use for backups" 20 50 8 \
164
+			  "Username:" 1 1 "$remote_ssh_username" 1 23 16 15 \
165
+			  "Domain:" 2 1 "$remote_ssh_domain" 2 23 16 15 \
166
+			  "SSH port:" 3 1 "2222" 3 23 5 4 \
167
+			  "Password:" 4 1 "$remote_ssh_password" 4 23 20 100 \
168
+			  "Reciprocal Username:" 5 1 "$remote_ssh_reciprocal_username" 5 23 20 100 \
169
+			  "Reciprocal Password:" 6 1 "$remote_ssh_reciprocal_password" 6 23 20 100 \
170
+			  2> $data
171
+	  else
172
+		  dialog --backtitle "Freedombone Configuration" \
173
+			  --title "$TITLE ${entering_remote_backups_ctr}" \
174
+			  --form "\nPlease specify the SSH login details for the remote server" 15 50 4 \
175
+			  "Username:" 1 1 "$remote_ssh_username" 1 23 16 15 \
176
+			  "Domain:" 2 1 "$remote_ssh_domain" 2 23 16 15 \
177
+			  "SSH port:" 3 1 "2222" 3 23 5 4 \
178
+			  "Password:" 4 1 "$remote_ssh_password" 4 23 20 100 \
179
+			  2> $data
180
+	  fi
181
+	  sel=$?
182
+	  case $sel in
183
+		  1) entering_remote_backups_done="yes";;
184
+		  255) entering_remote_backups_done="yes";;
185
+	  esac
186
+	  remote_ssh_username=$(cat $data | sed -n 1p)
187
+	  remote_ssh_domain=$(cat $data | sed -n 2p)
188
+	  remote_ssh_port=$(cat $data | sed -n 3p)
189
+	  remote_ssh_password=$(cat $data | sed -n 4p)
190
+	  remote_ssh_reciprocal_username=$(cat $data | sed -n 5p)
191
+	  remote_ssh_reciprocal_password=$(cat $data | sed -n 6p)
192
+	  if [[ $remote_ssh_username != "" && \
193
+		  $remote_ssh_domain != "" && \
194
+		  $remote_ssh_port != "" && \
195
+		  $remote_ssh_password != "" ]]; then
187
 
196
 
188
-          if [ ${#remote_ssh_password} -lt $MINIMUM_PASSWORD_LENGTH ]; then
189
-              dialog --title "Password quality check" --msgbox "The password given was too short. It must be at least $MINIMUM_PASSWORD_LENGTH characters" 6 40
190
-          else
197
+		  if [ ${#remote_ssh_password} -lt $MINIMUM_PASSWORD_LENGTH ]; then
198
+			  dialog --title "Password quality check" --msgbox "The password given was too short. It must be at least $MINIMUM_PASSWORD_LENGTH characters" 6 40
199
+		  else
191
 
200
 
192
-              if [[ $RECIPROCAL == "yes" ]]; then
193
-                  if [[ $remote_ssh_reciprocal_username != "" && \
194
-                        $remote_ssh_reciprocal_password != "" ]]; then
195
-                      if [ ${#remote_ssh_reciprocal_password} -lt $MINIMUM_PASSWORD_LENGTH ]; then
196
-                          dialog --title "Password quality check" --msgbox "The reciprocal password given was too short. It must be at least $MINIMUM_PASSWORD_LENGTH characters" 6 40
197
-                      else
198
-                          echo ${remote_ssh_reciprocal_username}:${remote_ssh_reciprocal_password}::::/home/${remote_ssh_reciprocal_username}:bash | newusers
199
-                          echo "$remote_ssh_username@$remote_ssh_domain $remote_ssh_port /home/$remote_ssh_username $remote_ssh_password" >> $FRIENDS_SERVERS_LIST
200
-                          remote_ssh_username=""
201
-                          remote_ssh_domain=""
202
-                          remote_ssh_port=""
203
-                          remote_ssh_password=""
204
-                          remote_ssh_reciprocal_username=""
205
-                          remote_ssh_reciprocal_password=""
206
-                          entering_remote_backups_ctr=$((entering_remote_backups_ctr + 1))
207
-                      fi
208
-                  else
209
-                      echo "$remote_ssh_username@$remote_ssh_domain $remote_ssh_port /home/$remote_ssh_username $remote_ssh_password" >> $FRIENDS_SERVERS_LIST
210
-                      remote_ssh_username=""
211
-                      remote_ssh_domain=""
212
-                      remote_ssh_port=""
213
-                      remote_ssh_password=""
214
-                      remote_ssh_reciprocal_username=""
215
-                      remote_ssh_reciprocal_password=""
216
-                      entering_remote_backups_ctr=$((entering_remote_backups_ctr + 1))
217
-                  fi
218
-              else
219
-                  echo "$remote_ssh_username@$remote_ssh_domain $remote_ssh_port /home/$remote_ssh_username $remote_ssh_password" >> $FRIENDS_SERVERS_LIST
220
-                  remote_ssh_username=""
221
-                  remote_ssh_domain=""
222
-                  remote_ssh_port=""
223
-                  remote_ssh_password=""
224
-                  entering_remote_backups_ctr=$((entering_remote_backups_ctr + 1))
225
-              fi
201
+			  if [[ $RECIPROCAL == "yes" ]]; then
202
+				  if [[ $remote_ssh_reciprocal_username != "" && \
203
+						$remote_ssh_reciprocal_password != "" ]]; then
204
+					  if [ ${#remote_ssh_reciprocal_password} -lt $MINIMUM_PASSWORD_LENGTH ]; then
205
+						  dialog --title "Password quality check" --msgbox "The reciprocal password given was too short. It must be at least $MINIMUM_PASSWORD_LENGTH characters" 6 40
206
+					  else
207
+						  echo ${remote_ssh_reciprocal_username}:${remote_ssh_reciprocal_password}::::/home/${remote_ssh_reciprocal_username}:bash | newusers
208
+						  echo "$remote_ssh_username@$remote_ssh_domain $remote_ssh_port /home/$remote_ssh_username $remote_ssh_password" >> $FRIENDS_SERVERS_LIST
209
+						  remote_ssh_username=""
210
+						  remote_ssh_domain=""
211
+						  remote_ssh_port=""
212
+						  remote_ssh_password=""
213
+						  remote_ssh_reciprocal_username=""
214
+						  remote_ssh_reciprocal_password=""
215
+						  entering_remote_backups_ctr=$((entering_remote_backups_ctr + 1))
216
+					  fi
217
+				  else
218
+					  echo "$remote_ssh_username@$remote_ssh_domain $remote_ssh_port /home/$remote_ssh_username $remote_ssh_password" >> $FRIENDS_SERVERS_LIST
219
+					  remote_ssh_username=""
220
+					  remote_ssh_domain=""
221
+					  remote_ssh_port=""
222
+					  remote_ssh_password=""
223
+					  remote_ssh_reciprocal_username=""
224
+					  remote_ssh_reciprocal_password=""
225
+					  entering_remote_backups_ctr=$((entering_remote_backups_ctr + 1))
226
+				  fi
227
+			  else
228
+				  echo "$remote_ssh_username@$remote_ssh_domain $remote_ssh_port /home/$remote_ssh_username $remote_ssh_password" >> $FRIENDS_SERVERS_LIST
229
+				  remote_ssh_username=""
230
+				  remote_ssh_domain=""
231
+				  remote_ssh_port=""
232
+				  remote_ssh_password=""
233
+				  entering_remote_backups_ctr=$((entering_remote_backups_ctr + 1))
234
+			  fi
226
 
235
 
227
-          fi
228
-      else
229
-          entering_remote_backups_done="yes"
230
-      fi
236
+		  fi
237
+	  else
238
+		  entering_remote_backups_done="yes"
239
+	  fi
231
   done
240
   done
232
   if [ -f $FRIENDS_SERVERS_LIST ]; then
241
   if [ -f $FRIENDS_SERVERS_LIST ]; then
233
-      chown $MY_USERNAME:$MY_USERNAME $FRIENDS_SERVERS_LIST
242
+	  chown $MY_USERNAME:$MY_USERNAME $FRIENDS_SERVERS_LIST
234
   fi
243
   fi
235
 }
244
 }
236
 
245
 
237
 function show_result {
246
 function show_result {
238
   clear
247
   clear
239
   if (( $entering_remote_backups_ctr < 2 )); then
248
   if (( $entering_remote_backups_ctr < 2 )); then
240
-      echo $'No remote backup locations were specified'
241
-      exit 0
249
+	  echo $'No remote backup locations were specified'
250
+	  exit 0
242
   fi
251
   fi
243
   if [ ! -f $FRIENDS_SERVERS_LIST ]; then
252
   if [ ! -f $FRIENDS_SERVERS_LIST ]; then
244
-      echo $"No remote backups list found: $FRIENDS_SERVERS_LIST"
245
-      exit 7358
253
+	  echo $"No remote backups list found: $FRIENDS_SERVERS_LIST"
254
+	  exit 7358
246
   fi
255
   fi
247
   echo ''
256
   echo ''
248
   echo $"Remote backups list: $FRIENDS_SERVERS_LIST"
257
   echo $"Remote backups list: $FRIENDS_SERVERS_LIST"
254
 }
263
 }
255
 
264
 
256
 if [ ! $FRIENDS_SERVERS_LIST ]; then
265
 if [ ! $FRIENDS_SERVERS_LIST ]; then
257
-    FRIENDS_SERVERS_LIST=/home/$MY_USERNAME/backup.list
266
+	FRIENDS_SERVERS_LIST=/home/$MY_USERNAME/backup.list
258
 fi
267
 fi
259
 
268
 
260
 interactive_configuration_remote_backups
269
 interactive_configuration_remote_backups