You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
942 B
16 lines
942 B
6 years ago
|
Description: Fix GPG test.
|
||
|
Author: Amaury Pouly <amaury.pouly@gmail.com>
|
||
|
Origin: upstream https://cgit.kde.org/trojita.git/commit/?id=be8fd5831afa0a04f14cd6206e6576f03ee59558
|
||
|
Last-Update: 2018-09-26
|
||
|
--- a/tests/Cryptography/keygen.sh
|
||
|
+++ b/tests/Cryptography/keygen.sh
|
||
|
@@ -115,7 +115,7 @@ $TAIL" > crypto_test_data.h
|
||
|
echo -n "key *\nexpire\nseconds=1\nsave\n" | ${GPG} --no-tty --quiet --command-fd 0 --edit-key "expired@test.trojita.flaska.net"
|
||
|
|
||
|
# extract fingerprint of key to be deleted
|
||
|
-FINGERPRINT="$(${GPG} --quiet --no-tty --list-keys --with-colons --fingerprint unknown@test.trojita.flaska.net | grep fpr | cut -d : -f 10)"
|
||
|
+FINGERPRINT="$(${GPG} --quiet --no-tty --list-keys --with-colons --fingerprint unknown@test.trojita.flaska.net | grep fpr | head -n 1 | cut -d : -f 10)"
|
||
|
|
||
|
# delete key
|
||
|
yes | DISPLAY="" ${GPG} --quiet --batch --no-tty --delete-secret-and-public-key --yes --command-fd 0 --passphrase-fd 0 "${FINGERPRINT}"
|