Page 1 of 1

CentOS 7 Update impossible

Posted: 2018/05/20 15:34:25
by Hanisch
Hello,
the last Update is wrong.

Code: Select all

$ sudo yum update
...
Abhängigkeiten aufgelöst
...
Is this ok [y/d/N]: y
Downloading packages:
warning: /var/cache/yum/x86_64/7/updates/packages/scap-security-guide-0.1.36-9.el7.centos.noarch.rpm: Header V3 RSA/SHA256 Signature, key ID f533f4fa: NOKEY
Schlüssel wird von file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 geholt

Die aufgelisteten GPG-Schlüssel für die »CentOS-7 - Updates«-Paketquelle sind bereits installiert, aber sie sind nicht korrekt für dieses Paket.
Stellen Sie sicher, dass die korrekten Schlüssel-URLs für diese Paketquelle konfiguriert sind.

 Fehlgeschlagenes Paket: scap-security-guide-0.1.36-9.el7.centos.noarch
 GPG-Schlüssel sind konfiguriert als: file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
What can I do to solve the problem?
How can I Exclude that package from the update?

With regards
Ch. Hanisch

Re: CentOS 7 Update impossible

Posted: 2018/05/20 15:45:06
by TrevorH
It's a bug where those packages have been signed with the wrong key - the one for the ppc architecture not x86_64. It's being corrected and will be on the mirrors soon. You can use yum --exclude=scap\* ... until then.

Re: CentOS 7 Update impossible

Posted: 2018/05/20 17:10:11
by Hanisch
TrevorH wrote:It's a bug where those packages have been signed with the wrong key - the one for the ppc architecture not x86_64. It's being corrected and will be on the mirrors soon. You can use yum --exclude=scap\* ... until then.
Ok. - with

Code: Select all

sudo yum --exclude=scap\* update
the Update works well.
But how can I install later the excluded packages?

with regards
Ch. Hanisch

Re: CentOS 7 Update impossible

Posted: 2018/05/20 20:35:34
by TrevorH
Once the re-signed ones propagate to the mirror network, they'll automatically appear in your next yum update and go on then. If it doesn't pick it up automatically then you can try running yum clean all to make it recheck for newer package info next time you update.

[Solved]CentOS 7 Update impossible

Posted: 2018/05/21 08:02:19
by Hanisch
TrevorH wrote:Once the re-signed ones propagate to the mirror network, they'll automatically appear in your next yum update and go on then. If it doesn't pick it up automatically then you can try running yum clean all to make it recheck for newer package info next time you update.
Ok. - Thank you.

with regards
Ch. Hanisch