X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=handlers%2Fdup.helper;h=e1d481ab197d7b1f03db4eda5d73616b4c8e62a9;hb=e39338a4d07ec0fae39e38555b5b3881a8f5fbbc;hp=795a2be806adb1b57209b941b045600344e56bf7;hpb=d568f305fd59d1894b5bafdcdcdb58d8ed077ec4;p=matthijs%2Fupstream%2Fbackupninja.git diff --git a/handlers/dup.helper b/handlers/dup.helper index 795a2be..e1d481a 100644 --- a/handlers/dup.helper +++ b/handlers/dup.helper @@ -185,7 +185,7 @@ do_dup_gpg_passphrase() { do_dup_gpg() { # symmetric or public key encryption ? - booleanBox "$dup_title - GnuPG" "Use public key encryption? Else, symmetric encryption will be used, and data signing will be impossible." "$dup_gpg_asymmetric_encryption" + booleanBox "$dup_title - GnuPG" "Use public key encryption? Otherwise, symmetric encryption will be used, and data signing will be impossible." "$dup_gpg_asymmetric_encryption" if [ $? = 0 ]; then dup_gpg_asymmetric_encryption=yes else @@ -207,10 +207,10 @@ do_dup_gpg() { [ $? = 0 ] || return 1 elif [ "$dup_gpg_sign" == "yes" ]; then if [ -z "$dup_gpg_signkey" ]; then - do_dup_gpg_passphrase "unlock the GnuPG 0x$dup_gpg_signkey key used to sign the backups" + do_dup_gpg_passphrase "unlock the GnuPG key used to sign the backups" [ $? = 0 ] || return 1 else - do_dup_gpg_passphrase "unlock the GnuPG 0x$dup_gpg_encryptkey key used to sign the backups" + do_dup_gpg_passphrase "unlock the GnuPG key used to sign the backups" [ $? = 0 ] || return 1 fi fi