(debian Testing/ apt 2.4.0)
apt update brings the following message:
W: http://dist.jriver.com/latest/mediacenter/dists/buster/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.
the manual says the following:
If your existing use of apt-key add looks like this:
wget -qO- https://myrepo.example/myrepo.asc | sudo apt-key add -
Then you can directly replace this with (though note the recommendation below):
wget -qO- https://myrepo.example/myrepo.asc | sudo tee /etc/apt/trusted.gpg.d/myrepo.asc
Make sure to use the "asc" extension for ASCII armored keys and the "gpg" extension for the binary OpenPGP
format (also known as "GPG key public ring"). The binary OpenPGP format works for all apt versions, while the
ASCII armored format works for apt version >= 1.4.
When I run this, I'm not sure what the correct name of the term
myrepo.asc is
apt-key list gives me the following:
apt-key list
pub rsa2048 2014-04-17 [SC]
AFCA BAC2 C6F1 6C0E 1F2D 9707 C30B 25C6 0777 65D5
uid [ unknown ] superid <superid@jriver.com>
sub rsa2048 2014-04-17 [E]
Would that be correct?
wget -qO "http://dist.jriver.com/mediacenter@jriver.com.gpg.key" tee /etc/apt/trusted.gpg.d/XXXX??
I would be grateful for a hint