Bob Mottram 8 years ago
parent
commit
f24a136e77
1 changed files with 175 additions and 175 deletions
  1. 175
    175
      src/freedombone-remote

+ 175
- 175
src/freedombone-remote View File

@@ -65,201 +65,201 @@ TITLE='Remote Backup'
65 65
 RECIPROCAL="no"
66 66
 
67 67
 function show_help {
68
-  echo ''
69
-  echo $"${PROJECT_NAME}-remote -u [username] -l [backup list filename] -m [min password length]"
70
-  echo ''
71
-  echo $'Creates an inventory of remote backup locations'
72
-  echo ''
73
-  echo ''
74
-  echo $'  -h --help             Show help'
75
-  echo $'  -u --username         User to create the backups.list file for'
76
-  echo $'  -l --list             Remote backup list (usually /home/$USER/backup.list)'
77
-  echo $'  -m --min              Minimum password length (characters)'
78
-  echo $'  -r --reciprocal       Whether to add reciprocal user accounts'
79
-  echo $'  -t --title            Title shown'
80
-  echo ''
81
-  exit 0
68
+	echo ''
69
+	echo $"${PROJECT_NAME}-remote -u [username] -l [backup list filename] -m [min password length]"
70
+	echo ''
71
+	echo $'Creates an inventory of remote backup locations'
72
+	echo ''
73
+	echo ''
74
+	echo $'  -h --help             Show help'
75
+	echo $'  -u --username         User to create the backups.list file for'
76
+	echo $'  -l --list             Remote backup list (usually /home/$USER/backup.list)'
77
+	echo $'  -m --min              Minimum password length (characters)'
78
+	echo $'  -r --reciprocal       Whether to add reciprocal user accounts'
79
+	echo $'  -t --title            Title shown'
80
+	echo ''
81
+	exit 0
82 82
 }
83 83
 
84 84
 # Get the commandline options
85 85
 while [[ $# > 1 ]]
86 86
 do
87
-key="$1"
87
+	key="$1"
88 88
 
89
-case $key in
90
-	-h|--help)
91
-	show_help
92
-	;;
93
-	# backup list filename
94
-	# typically /home/$USER/backup.list
95
-	-l|--list)
89
+	case $key in
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
+			;;
122
+	esac
96 123
 	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
-	;;
122
-esac
123
-shift
124 124
 done
125 125
 
126 126
 function interactive_configuration_remote_backups {
127
-  if [ ! $MY_USERNAME ]; then
128
-	  echo $'Please specify a username with the -u option'
129
-	  exit 7356
130
-  fi
127
+	if [ ! $MY_USERNAME ]; then
128
+		echo $'Please specify a username with the -u option'
129
+		exit 7356
130
+	fi
131 131
 
132
-  if [ ! /home/$MY_USERNAME ]; then
133
-	  echo $"The user /home/$MY_USERNAME does not exist on the system"
134
-	  exit 3689
135
-  fi
132
+	if [ ! /home/$MY_USERNAME ]; then
133
+		echo $"The user /home/$MY_USERNAME does not exist on the system"
134
+		exit 3689
135
+	fi
136 136
 
137
-  if [ ! $FRIENDS_SERVERS_LIST ]; then
138
-	  FRIENDS_SERVERS_LIST=/home/$MY_USERNAME/backup.list
139
-  fi
137
+	if [ ! $FRIENDS_SERVERS_LIST ]; then
138
+		FRIENDS_SERVERS_LIST=/home/$MY_USERNAME/backup.list
139
+	fi
140 140
 
141
-  # clear any existing list
142
-  if [ -f $FRIENDS_SERVERS_LIST ]; then
143
-	  rm -f $FRIENDS_SERVERS_LIST
144
-	  touch $FRIENDS_SERVERS_LIST
145
-  fi
146
-  # number of entries made
147
-  entering_remote_backups_ctr=1
141
+	# clear any existing list
142
+	if [ -f $FRIENDS_SERVERS_LIST ]; then
143
+		rm -f $FRIENDS_SERVERS_LIST
144
+		touch $FRIENDS_SERVERS_LIST
145
+	fi
146
+	# number of entries made
147
+	entering_remote_backups_ctr=1
148 148
 
149
-  entering_remote_backups_done="no"
150
-  remote_ssh_username=""
151
-  remote_ssh_domain=""
152
-  remote_ssh_port=""
153
-  remote_ssh_password=""
154
-  remote_ssh_reciprocal_username=""
155
-  remote_ssh_reciprocal_password=""
156
-  while [[ $entering_remote_backups_done == "no" ]]
157
-  do
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
149
+	entering_remote_backups_done="no"
150
+	remote_ssh_username=""
151
+	remote_ssh_domain=""
152
+	remote_ssh_port=""
153
+	remote_ssh_password=""
154
+	remote_ssh_reciprocal_username=""
155
+	remote_ssh_reciprocal_password=""
156
+	while [[ $entering_remote_backups_done == "no" ]]
157
+	do
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
196 196
 
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
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
200 200
 
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
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
235 235
 
236
-		  fi
237
-	  else
238
-		  entering_remote_backups_done="yes"
239
-	  fi
240
-  done
241
-  if [ -f $FRIENDS_SERVERS_LIST ]; then
242
-	  chown $MY_USERNAME:$MY_USERNAME $FRIENDS_SERVERS_LIST
243
-  fi
236
+			fi
237
+		else
238
+			entering_remote_backups_done="yes"
239
+		fi
240
+	done
241
+	if [ -f $FRIENDS_SERVERS_LIST ]; then
242
+		chown $MY_USERNAME:$MY_USERNAME $FRIENDS_SERVERS_LIST
243
+	fi
244 244
 }
245 245
 
246 246
 function show_result {
247
-  clear
248
-  if (( $entering_remote_backups_ctr < 2 )); then
249
-	  echo $'No remote backup locations were specified'
250
-	  exit 0
251
-  fi
252
-  if [ ! -f $FRIENDS_SERVERS_LIST ]; then
253
-	  echo $"No remote backups list found: $FRIENDS_SERVERS_LIST"
254
-	  exit 7358
255
-  fi
256
-  echo ''
257
-  echo $"Remote backups list: $FRIENDS_SERVERS_LIST"
258
-  echo ''
259
-  echo $'Contents:'
260
-  echo ''
261
-  cat $FRIENDS_SERVERS_LIST
262
-  echo ''
247
+	clear
248
+	if (( $entering_remote_backups_ctr < 2 )); then
249
+		echo $'No remote backup locations were specified'
250
+		exit 0
251
+	fi
252
+	if [ ! -f $FRIENDS_SERVERS_LIST ]; then
253
+		echo $"No remote backups list found: $FRIENDS_SERVERS_LIST"
254
+		exit 7358
255
+	fi
256
+	echo ''
257
+	echo $"Remote backups list: $FRIENDS_SERVERS_LIST"
258
+	echo ''
259
+	echo $'Contents:'
260
+	echo ''
261
+	cat $FRIENDS_SERVERS_LIST
262
+	echo ''
263 263
 }
264 264
 
265 265
 if [ ! $FRIENDS_SERVERS_LIST ]; then