環境
- Amazon Linux Ami 2
現象
sudo yum update
しようとすると、以下のようなメッセージが出て更新できない。
The GPG keys listed for the "Datadog, Inc." repository are already installed but they are not correct for this package.
Check that the correct key URLs are configured for this repository.
解決策
いつの間にかGPGキーが増えているので、それを足す。
sudo vi /etc/yum.repos.d/datadog.repo
gpgkey=https://yum.datadoghq.com/DATADOG_RPM_KEY.public
+ https://yum.datadoghq.com/DATADOG_RPM_KEY_E09422B3.public
その後、 sudo yum update
すると、更新できた。