diff options
author | Micah Anderson <micah@riseup.net> | 2006-04-22 21:31:34 +0000 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2006-04-22 21:31:34 +0000 |
commit | e39338a4d07ec0fae39e38555b5b3881a8f5fbbc (patch) | |
tree | 8b9511156aafdfdea1db8083990f941b5997395c /handlers | |
parent | cb0d7cbdb0d31edf3db9788e3cc0b28b2fd5cbc2 (diff) | |
download | backupninja-e39338a4d07ec0fae39e38555b5b3881a8f5fbbc.tar.gz backupninja-e39338a4d07ec0fae39e38555b5b3881a8f5fbbc.tar.bz2 |
The helper didn't display the key properly, and I couldn't figure out
how to get it to do so, so I just removed that piece ;)
Diffstat (limited to 'handlers')
-rw-r--r-- | handlers/dup.helper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/handlers/dup.helper b/handlers/dup.helper index 81c6ad1..e1d481a 100644 --- a/handlers/dup.helper +++ b/handlers/dup.helper @@ -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 |