summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2019-04-01 15:01:10 +0000
committerNorbert Preining <preining@logic.at>2019-04-01 15:01:10 +0000
commit31ccd24dea07e71686a98110919371de80ed0dc0 (patch)
treed312666810dec97067c807bcf492dbffa1f60194 /Master/texmf-dist/scripts
parent9cd662864f3bb8d9c7648322e3bd354d0051f970 (diff)
gpg sigs: also recognize sigs of revoked keys
git-svn-id: svn://tug.org/texlive/trunk@50692 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-xMaster/texmf-dist/scripts/texlive/tlmgr.pl5
1 files changed, 4 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl
index 1f9a0d051d1..5d11c99628c 100755
--- a/Master/texmf-dist/scripts/texlive/tlmgr.pl
+++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl
@@ -6908,7 +6908,10 @@ END_NO_INTERNET
tldie("$prg: verification of checksum for $location failed: $msg\n");
} elsif ($ret == $VS_EXPKEYSIG) {
# do nothing, try to get new tlpdb and hope sig is better?
- debug("$prg: gpg key expired, continuing anyway!\n");
+ debug("$prg: good signature bug gpg key expired, continuing anyway!\n");
+ } elsif ($ret == $VS_REVKEYSIG) {
+ # do nothing, try to get new tlpdb and hope sig is better?
+ debug("$prg: good signature but from revoked gpg key, continuing anyway!\n");
} elsif ($ret == $VS_VERIFIED) {
$remotetlpdb = TeXLive::TLPDB->new(root => $location,
tlpdbfile => $loc_copy_of_remote_tlpdb);