Updating an Expired APT or RPM Package Signing Key

This article will provide the command needed to update an expired APT package signing key.

Occasionally, you will have to update your apt-key keyring with a newer package signing key from LINBIT®. If you see an error similar to this:

An error occurred during the signature verification

When you are trying to update or install packages, then you can run the following command (as root) to update your LINBIT package signing key:

wget -O- https://packages.linbit.com/package-signing-pubkey.asc | apt-key add -

For RPM based distributions:

rpm --import https://packages.linbit.com/package-signing-pubkey.asc

Edited 2021/02/12 – DJV