mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 08:01:09 +00:00
Trust the installed debian-keyring when checking validity of dsc signatures.
This commit is contained in:
parent
ba2afc6429
commit
982ebe6a46
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -1,3 +1,10 @@
|
||||
ubuntu-dev-tools (0.175) UNRELEASED; urgency=medium
|
||||
|
||||
* Trust the installed debian-keyring when checking validity of dsc
|
||||
signatures.
|
||||
|
||||
-- Mattia Rizzolo <mattia@debian.org> Mon, 28 Oct 2019 14:32:20 +0100
|
||||
|
||||
ubuntu-dev-tools (0.174) unstable; urgency=medium
|
||||
|
||||
[ Stefano Rivera ]
|
||||
|
@ -265,7 +265,10 @@ class SourcePackage(object):
|
||||
message = None
|
||||
gpg_info = None
|
||||
try:
|
||||
gpg_info = self.dsc.get_gpg_info()
|
||||
gpg_info = self.dsc.get_gpg_info((
|
||||
'/usr/share/keyrings/debian-keyring.gpg',
|
||||
'/usr/share/keyrings/debian-maintainers.gpg',
|
||||
))
|
||||
valid = gpg_info.valid()
|
||||
except IOError:
|
||||
message = ('Signature on %s could not be verified, install '
|
||||
|
Loading…
x
Reference in New Issue
Block a user