Skip to content
Snippets Groups Projects
Commit dc6e7ab7 authored by Emil Breiner's avatar Emil Breiner
Browse files

Fix of declining the key comment redirecting to the main menu in the borg helper

Change-Id: I38eb6fb66552ec6664c5ff79251ff5c2702428a0
parent eea3cfad
No related branches found
No related tags found
No related merge requests found
......@@ -175,12 +175,15 @@ do_borg_ssh_con() {
else
msg='This step will create a ssh key for the local root user with no passphrase (if one does not already exist), '\
'and attempt to copy '"${borg_user}'s"' public ssh key to authorized_keys file of '"$borg_user@$borg_host"'. '\
'This will allow the local root to make unattended backups to '"$borg_user@$borg_host.\n\n\n"\
'Specify an optional comment for the keypair:'
'This will allow the local root to make unattended backups to '"$borg_user@$borg_host.\n\n\n"
booleanBox "$borg_title" "${msg}"
if [ $? -eq 0 ]; then
msg="${msg}Specify an optional comment for the keypair:"
inputBox "$borg_title" "${msg}"
[ $? = 0 ] || return 1
key_comment=$REPLY
fi
fi
if [ $? -eq 0 ]; then
echo "Creating local rsa keypair for user..."
if [ ! -f "$borg_id_file" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment