Replies: 2 comments
-
To make this google-able – This is the text from the warning, I got:
|
Beta Was this translation helpful? Give feedback.
-
I was able to fix this using the recommended method listed in apt-key(8)'s DEPRECATION section. |
Beta Was this translation helpful? Give feedback.
-
Hi,
as there is no way to make a PR to a wiki in Github:
I was informed by my distribution (Kubuntu 22.04), that the usage of trusted.gpg (/etc/apt/trusted.gpg) is deprecated.
To fix the warning I had to do the following steps:
sudo apt-key del ABBA007D6E14E2DB5B283C45D599C1AA126762B1 wget -qO- https://wire-app.wire.com/linux/releases.key | sudo tee /etc/apt/trusted.gpg.d/wire.asc
That way is advised by the
apt-key
-manpage.I suggest you to replace this line from your documentation
wget -q https://wire-app.wire.com/linux/releases.key -O- | sudo apt-key add -
by that
wget -qO- https://wire-app.wire.com/linux/releases.key | sudo tee /etc/apt/trusted.gpg.d/wire.asc
greetings,
Markus
Beta Was this translation helpful? Give feedback.
All reactions