Description
Use Case
The apt-key
command has been deprecated in Debian testing aka bookworm in favor of storing key files directly into either /etc/apt/trusted.gpg.d/ or /etc/apt/keyrings/ and (in case of the latter) refer to them directly in individual sources.list entries (like [ signed-by=/path/to/file.gpg ]
.
This also already works in Debian stable aka bullseye (and maybe oldstable/buster) and corresponding Ubuntu versions. So it would be nice to have this in place already before bookworm is released, esp. so as apt-get update
will emit warnings for all keys still stored in the /etc/apt/trusted.gpg file.
Describe the Solution You Would Like
apt::key
should have options to store keys downloaded as .gpg
or .asc
files in one of the directories above.
Describe Alternatives You've Considered
Only alternative I see currently is to use a file
resource instead of apt::key
.