openpgp: always update information about the Web of Trust#41
Closed
bjacquin wants to merge 1 commit into
Closed
Conversation
Member
|
You didn't run |
gemato can fail if /etc/gnupg/gpg.conf contains no-auto-check-trustdb
while gemato needs --check-trustdb:
$ gemato openpgp-verify-detached -K /usr/share/openpgp-keys/chetramey.asc -R --no-require-all-good /var/tmp/portage/sys-libs/readline-8.3_p3/distdir/readline-8.3.tar.gz.sig /var/tmp/portage/sys-libs/readline-8.3_p3/distdir/readline-8.3.tar.gz
ERROR OpenPGP verification failed for <_io.BufferedReader name='/var/tmp/portage/sys-libs/readline-8.3_p3/distdir/readline-8.3.tar.gz'> (sig in /var/tmp/portage/sys-libs/readline-8.3_p3/distdir/readline-8.3.tar.gz.sig):
Good OpenPGP signature made using untrusted key:
gpg: Warning: using insecure memory!
gpg: Signature made Wed Jul 2 13:17:41 2025 UTC
gpg: using DSA key 7C0135FB088AAF6C66C650B9BB5869F064EA74AB
gpg: please do a --check-trustdb
gpg: Good signature from "Chet Ramey <chet@cwru.edu>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg: There is no indication that the signature belongs to the owner.
Primary key fingerprint: 7C01 35FB 088A AF6C 66C6 50B9 BB58 69F0 64EA 74AB
This commit circumvent the issue by forcing
--auto-check-trustdb which takes precedence over configuration file.
Closes: https://bugs.gentoo.org/968583
Signed-off-by: Bertrand Jacquin <bertrand@jacquin.bzh>
Contributor
Author
Good point, now done :) |
2958249 to
b82a97b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
gemato can fail if /etc/gnupg/gpg.conf contains no-auto-check-trustdb while gemato needs --check-trustdb:
This commit circumvent the issue by forcing
--auto-check-trustdb which takes precedence over configuration file.
Closes: https://bugs.gentoo.org/968583