Upgrading from 30 to 33 - gpg / curl error

I am trying to upgrade to 33, but the command :

sudo dnf system-upgrade download --refresh --releasever=33 --skip-broken --allowerasing

gives me the following errors :

warning: /var/lib/dnf/system-upgrade/updates-f882f705d68c7676/packages/alsa-sof-firmware-1.6-1.fc33.noarch.rpm: Header V4 RSA/SHA256 Signature, key ID 9570ff31: NOKEY
Fedora 33 - x86_64 - Updates                                      0.0  B/s |   0  B     00:00    
Curl error (37): Couldn't read a file:// file for file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-33-x86_64 [Couldn't open file /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-33-x86_64]

I’ve tried with v32, and I’m getting this errors instead :

warning: /var/lib/dnf/system-upgrade/fedora-6463db1a10fa578d/packages/c-ares-1.15.0-5.fc32.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID 12c944d0: NOKEY
Fedora 32 - x86_64                                                143 kB/s | 1.6 kB     00:00    
Importing GPG key 0x12C944D0:
 Userid     : "Fedora (32) <fedora-32-primary@fedoraproject.org>"
 Fingerprint: 97A1 AE57 C3A2 372C CA3A 4ABA 6C13 026D 12C9 44D0
 From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-32-x86_64
Is this ok [y/N]: y
Key imported successfully
warning: /var/lib/dnf/system-upgrade/remi-modular-3cc3da1e83f386c0/packages/php-pecl-imagick-3.4.4-9.fc32.remi.7.4.x86_64.rpm: Header V4 RSA/SHA256 Signature, key ID 4c21a808: NOKEY
Remi's Modular repository - Fedora 32 - x86_64                    0.0  B/s |   0  B     00:00    
Curl error (37): Couldn't read a file:// file for file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi-32 [Couldn't open file /etc/pki/rpm-gpg/RPM-GPG-KEY-remi-32]

I’m not sure what to do here…
I’ve tried the suggestion from this : I cant update fedora 32, curl error 37 - #6 by learner12345
But it did not solve my problem.

I’m willing to remove any problematic package in order to upgrade… cheers !

1 Like

You can fetch the keys here:

But upgrading across multiple releases can be problematic.

1 Like

Hi and thanks for your answer.
I’m only trying to upgrade to 33.

Sorry but could you be more precise on what I have to do exactly to solve my issue? I don’t how to start about it with what you gave me…

1 Like

Skipping releases is the problem.
It might be easier to upgrade consecutively.

curl KEY_URL | gpg --import
gpg --list-keys
gpg --armor --export KEY_ID | sudo tee /path/to/file
1 Like

Thanks for your help.
I thought that when upgrading from 30 to 33, the installation process would go through 31 and 32…

In the end, I had to disable some problematic module (php-remi), but upgrading first to 31, then to 32, then to 33, everything went smoothly !

1 Like

I am experiencing a similar problem upgrading from 31 to 32 - no skipping this time.

warning: /var/lib/dnf/system-upgrade/rpmfusion-free-updates-8506a35c7cbbd563/packages/faad2-libs-2.9.2-1.fc32.x86_64.rpm: Header V3 RSA/SHA1 Signature, key ID 100bcd92: NOKEY
RPM Fusion for Fedora 32 - Free - Updates 0.0 B/s | 0 B 00:00
Curl error (37): Couldn’t read a file:// file for file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora-32 [Couldn’t open file /etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora-32]

The downloaded packages were saved in cache until the next successful transaction.
You can remove cached packages by executing β€˜dnf clean packages’.

My attempts to recover the key manually fails. The 31 key is already in /etc/pki/

rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora-31
error: /etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora-31: import read failed(2).
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora-32
error: /etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora-32: import read failed(2).

I don’t understand your instructions to get the gpg keys in your message:
Is KEY_URL an environment variable and what should it be set to?
Same for KEY_ID, guessing 100bcd92
The /path/to/file is just somewhere to record the output, or is it /etc/pki?
Since the other rpmfusion repos do not give warnings, and their layout is identical and I can update files from them, is it a problem with the current cloud files?
dnf system-upgrade reboot fails, presumably because of the warning, but shouldn’t it be reported an error?
Also dnf clean packages and dnf clean all do not clear the downloaded files.

The files downloaded for a dnf system upgrade are put in a different cache path than the regular dnf upgrade files. This is why they are not erased with the command you used. When you fix the error they will already be downloaded and waiting.
Your error is telling you that you need the updated rpmfusion gpg key for f32 which can be gotten by following the command line setup instructions from rpmfusion

You can download the missing keys on the second link in the post above.

Thanks to both of you for the instructions. However they didn’t work, perhaps because they install a fed32 repo on a fed31 system.

dnf install /tmp/mozilla_olin0/rpmfusion-free-release-32.noarch.rpm
Last metadata expiration check: 0:08:24 ago on Sun 29 Nov 2020 09:08:34 AM PST.
Error:
Problem: conflicting requests

  • nothing provides system-release(32) needed by rpmfusion-free-release-32-1.noarch
    I think the installation of these keys writes to files in the system upgrade download path.
    I think the fix might be to disable the rpmfusion repos, do the upgrade, and then install them again using the instructions you provided.
    dnf system-upgrade clear seems to work to take this route.

The curl error is still puzzling, as is the incorrect message from the upgrade regarding clearing the download cache.
I really prefer the upgrade path to a clean install because it’s a lot of work to get all the coding tools that I need back.

What I understood from the error is that the keys for F32 were needed to upgrade to F32. Thus installing them on the F31 system was correct in preparation for the upgrade.

If I understood wrongly then please correct me.

Please post the results of β€œls /etc/pki/rpm-gpg/” so we can see what keys are already downloaded.

Thanks Jeffrey for the quick response.
The curl error was generated by the dnf upgrade download process, exactly as reported by erralb at the top of the thread.

It’s a long list, so I’ll first do the rpmfusion ones. They are odd because they stop at 29.

ls /etc/pki/rpm-gpg/ -lt |grep fusion
-rw-rw-r–. 1 olin olin 1700 Jun 27 2019 RPM-GPG-KEY-rpmfusion-free-fedora-29
-rw-rw-r–. 1 olin olin 1688 Jun 27 2019 RPM-GPG-KEY-rpmfusion-cuda-2019
lrwxrwxrwx. 1 root root 44 Sep 1 2018 RPM-GPG-KEY-rpmfusion-free-fedora-28 β†’ RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
lrwxrwxrwx. 1 root root 44 Sep 1 2018 PM-GPG-KEY-rpmfusion-free-fedora-28 β†’ RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
lrwxrwxrwx. 1 root root 44 Sep 1 2018 PM-GPG-KEY-rpmfusion-free-fedora28 β†’ RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
lrwxrwxrwx. 1 root root 44 Sep 1 2018 PM-GPG-KEY-rpmfusion-fedora-rawhide β†’ RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
lrwxrwxrwx. 1 root root 44 Sep 1 2018 PM-GPG-KEY-rpmfusion-fedora-latest β†’ RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
lrwxrwxrwx. 1 root root 44 Sep 1 2018 PM-GPG-KEY-rpmfusion-free β†’ RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
-rw-r–r–. 1 root root 1700 Sep 1 2018 RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
-rw-r–r–. 1 root root 1676 Sep 1 2018 RPM-GPG-KEY-rpmfusion-free-fedora-26-primary
-rw-r–r–. 1 root root 1694 Sep 1 2018 RPM-GPG-KEY-rpmfusion-free-fedora-27-primary

It does allow me to install the rpmfusion-free-release-31.noarch.rpm and rpmfusion-nonfree-release-31.noarch.rpm keys, so I have done that successfully. However when I subsequently attempt the 32 ones I get the usual error
Problem: conflicting requests

  • nothing provides system-release(32) needed by rpmfusion-free-release-32-1.noarch
    Despite the error I seem now to have all the required keys!

ls -lt /etc/pki/rpm-gpg/|grep fusion
lrwxrwxrwx. 1 root root 47 Oct 21 2019 RPM-GPG-KEY-rpmfusion-nonfree-fedora-31 β†’ RPM-GPG-KEY-rpmfusion-nonfree-fedora-31-primary
lrwxrwxrwx. 1 root root 47 Oct 21 2019 RPM-GPG-KEY-rpmfusion-nonfree-fedora-32 β†’ RPM-GPG-KEY-rpmfusion-nonfree-fedora-32-primary
lrwxrwxrwx. 1 root root 41 Oct 21 2019 RPM-GPG-KEY-rpmfusion-nonfree-fedora-33 β†’ RPM-GPG-KEY-rpmfusion-nonfree-fedora-2020
lrwxrwxrwx. 1 root root 47 Oct 21 2019 RPM-GPG-KEY-rpmfusion-nonfree-fedora-latest β†’ RPM-GPG-KEY-rpmfusion-nonfree-fedora-32-primary
lrwxrwxrwx. 1 root root 41 Oct 21 2019 RPM-GPG-KEY-rpmfusion-nonfree-fedora-rawhide β†’ RPM-GPG-KEY-rpmfusion-nonfree-fedora-2020
-rw-r–r–. 1 root root 1704 Oct 21 2019 RPM-GPG-KEY-rpmfusion-nonfree-fedora-2020
-rw-r–r–. 1 root root 1704 Oct 21 2019 RPM-GPG-KEY-rpmfusion-nonfree-fedora-31-primary
-rw-r–r–. 1 root root 1704 Oct 21 2019 RPM-GPG-KEY-rpmfusion-nonfree-fedora-32-primary
lrwxrwxrwx. 1 root root 44 Oct 21 2019 RPM-GPG-KEY-rpmfusion-free-fedora-31 β†’ RPM-GPG-KEY-rpmfusion-free-fedora-31-primary
lrwxrwxrwx. 1 root root 44 Oct 21 2019 RPM-GPG-KEY-rpmfusion-free-fedora-32 β†’ RPM-GPG-KEY-rpmfusion-free-fedora-32-primary
lrwxrwxrwx. 1 root root 38 Oct 21 2019 RPM-GPG-KEY-rpmfusion-free-fedora-33 β†’ RPM-GPG-KEY-rpmfusion-free-fedora-2020
lrwxrwxrwx. 1 root root 44 Oct 21 2019 RPM-GPG-KEY-rpmfusion-free-fedora-latest β†’ RPM-GPG-KEY-rpmfusion-free-fedora-32-primary
lrwxrwxrwx. 1 root root 38 Oct 21 2019 RPM-GPG-KEY-rpmfusion-free-fedora-rawhide β†’ RPM-GPG-KEY-rpmfusion-free-fedora-2020
-rw-r–r–. 1 root root 1704 Oct 21 2019 RPM-GPG-KEY-rpmfusion-free-fedora-2020
-rw-r–r–. 1 root root 1700 Oct 21 2019 RPM-GPG-KEY-rpmfusion-free-fedora-31-primary
-rw-r–r–. 1 root root 1700 Oct 21 2019 RPM-GPG-KEY-rpmfusion-free-fedora-32-primary
-rw-rw-r–. 1 olin olin 1700 Jun 27 2019 RPM-GPG-KEY-rpmfusion-free-fedora-29
-rw-rw-r–. 1 olin olin 1688 Jun 27 2019 RPM-GPG-KEY-rpmfusion-cuda-2019
lrwxrwxrwx. 1 root root 44 Sep 1 2018 RPM-GPG-KEY-rpmfusion-free-fedora-28 β†’ RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
lrwxrwxrwx. 1 root root 44 Sep 1 2018 PM-GPG-KEY-rpmfusion-free-fedora-28 β†’ RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
lrwxrwxrwx. 1 root root 44 Sep 1 2018 PM-GPG-KEY-rpmfusion-free-fedora28 β†’ RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
lrwxrwxrwx. 1 root root 44 Sep 1 2018 PM-GPG-KEY-rpmfusion-fedora-rawhide β†’ RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
lrwxrwxrwx. 1 root root 44 Sep 1 2018 PM-GPG-KEY-rpmfusion-fedora-latest β†’ RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
lrwxrwxrwx. 1 root root 44 Sep 1 2018 PM-GPG-KEY-rpmfusion-free β†’ RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
-rw-r–r–. 1 root root 1700 Sep 1 2018 RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
-rw-r–r–. 1 root root 1676 Sep 1 2018 RPM-GPG-KEY-rpmfusion-free-fedora-26-primary
-rw-r–r–. 1 root root 1694 Sep 1 2018 RPM-GPG-KEY-rpmfusion-free-fedora-27-primary
bash-5.0#

Now the full list as requested. I should cull most of these!

ls /etc/pki/rpm-gpg/ -lt
total 216
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-31-fedora β†’ RPM-GPG-KEY-fedora-31-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-10-i386 β†’ RPM-GPG-KEY-fedora-10-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-10-ppc β†’ RPM-GPG-KEY-fedora-10-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-10-ppc64 β†’ RPM-GPG-KEY-fedora-10-primary
-rw-r–r–. 1 root root 2380 Aug 21 13:36 RPM-GPG-KEY-fedora-10-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-10-x86_64 β†’ RPM-GPG-KEY-fedora-10-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-11-i386 β†’ RPM-GPG-KEY-fedora-11-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-11-ppc β†’ RPM-GPG-KEY-fedora-11-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-11-ppc64 β†’ RPM-GPG-KEY-fedora-11-primary
-rw-r–r–. 1 root root 1653 Aug 21 13:36 RPM-GPG-KEY-fedora-11-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-11-x86_64 β†’ RPM-GPG-KEY-fedora-11-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-12-i386 β†’ RPM-GPG-KEY-fedora-12-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-12-ppc β†’ RPM-GPG-KEY-fedora-12-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-12-ppc64 β†’ RPM-GPG-KEY-fedora-12-primary
-rw-r–r–. 1 root root 1653 Aug 21 13:36 RPM-GPG-KEY-fedora-12-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-12-x86_64 β†’ RPM-GPG-KEY-fedora-12-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-13-arm β†’ RPM-GPG-KEY-fedora-13-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-13-armhfp β†’ RPM-GPG-KEY-fedora-13-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-13-i386 β†’ RPM-GPG-KEY-fedora-13-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-13-mips β†’ RPM-GPG-KEY-fedora-13-secondary
-rw-r–r–. 1 root root 1653 Aug 21 13:36 RPM-GPG-KEY-fedora-13-primary
-rw-r–r–. 1 root root 3810 Aug 21 13:36 RPM-GPG-KEY-fedora-13-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-13-x86_64 β†’ RPM-GPG-KEY-fedora-13-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-14-arm β†’ RPM-GPG-KEY-fedora-14-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-14-i386 β†’ RPM-GPG-KEY-fedora-14-primary
-rw-r–r–. 1 root root 1653 Aug 21 13:36 RPM-GPG-KEY-fedora-14-primary
-rw-r–r–. 1 root root 3819 Aug 21 13:36 RPM-GPG-KEY-fedora-14-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-14-x86_64 β†’ RPM-GPG-KEY-fedora-14-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-15-arm β†’ RPM-GPG-KEY-fedora-15-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-15-armhfp β†’ RPM-GPG-KEY-fedora-15-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-15-i386 β†’ RPM-GPG-KEY-fedora-15-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-15-ppc β†’ RPM-GPG-KEY-fedora-15-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-15-ppc64 β†’ RPM-GPG-KEY-fedora-15-secondary
-rw-r–r–. 1 root root 1653 Aug 21 13:36 RPM-GPG-KEY-fedora-15-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-15-s390 β†’ RPM-GPG-KEY-fedora-15-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-15-s390x β†’ RPM-GPG-KEY-fedora-15-secondary
-rw-r–r–. 1 root root 3810 Aug 21 13:36 RPM-GPG-KEY-fedora-15-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-15-x86_64 β†’ RPM-GPG-KEY-fedora-15-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-16-arm β†’ RPM-GPG-KEY-fedora-16-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-16-armhfp β†’ RPM-GPG-KEY-fedora-16-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-16-i386 β†’ RPM-GPG-KEY-fedora-16-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-16-ppc β†’ RPM-GPG-KEY-fedora-16-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-16-ppc64 β†’ RPM-GPG-KEY-fedora-16-secondary
-rw-r–r–. 1 root root 1653 Aug 21 13:36 RPM-GPG-KEY-fedora-16-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-16-s390 β†’ RPM-GPG-KEY-fedora-16-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-16-s390x β†’ RPM-GPG-KEY-fedora-16-secondary
-rw-r–r–. 1 root root 3819 Aug 21 13:36 RPM-GPG-KEY-fedora-16-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-16-x86_64 β†’ RPM-GPG-KEY-fedora-16-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-17-arm β†’ RPM-GPG-KEY-fedora-17-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-17-armhfp β†’ RPM-GPG-KEY-fedora-17-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-17-i386 β†’ RPM-GPG-KEY-fedora-17-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-17-ppc β†’ RPM-GPG-KEY-fedora-17-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-17-ppc64 β†’ RPM-GPG-KEY-fedora-17-secondary
-rw-r–r–. 1 root root 1653 Aug 21 13:36 RPM-GPG-KEY-fedora-17-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-17-s390 β†’ RPM-GPG-KEY-fedora-17-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-17-s390x β†’ RPM-GPG-KEY-fedora-17-secondary
-rw-r–r–. 1 root root 3828 Aug 21 13:36 RPM-GPG-KEY-fedora-17-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-17-x86_64 β†’ RPM-GPG-KEY-fedora-17-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-18-arm β†’ RPM-GPG-KEY-fedora-18-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-18-armhfp β†’ RPM-GPG-KEY-fedora-18-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-18-i386 β†’ RPM-GPG-KEY-fedora-18-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-18-ppc β†’ RPM-GPG-KEY-fedora-18-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-18-ppc64 β†’ RPM-GPG-KEY-fedora-18-secondary
-rw-r–r–. 1 root root 1658 Aug 21 13:36 RPM-GPG-KEY-fedora-18-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-18-s390 β†’ RPM-GPG-KEY-fedora-18-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-18-s390x β†’ RPM-GPG-KEY-fedora-18-secondary
-rw-r–r–. 1 root root 3828 Aug 21 13:36 RPM-GPG-KEY-fedora-18-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-18-x86_64 β†’ RPM-GPG-KEY-fedora-18-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-19-armhfp β†’ RPM-GPG-KEY-fedora-19-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-19-i386 β†’ RPM-GPG-KEY-fedora-19-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-19-ppc β†’ RPM-GPG-KEY-fedora-19-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-19-ppc64 β†’ RPM-GPG-KEY-fedora-19-secondary
-rw-r–r–. 1 root root 1658 Aug 21 13:36 RPM-GPG-KEY-fedora-19-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-19-s390 β†’ RPM-GPG-KEY-fedora-19-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-19-s390x β†’ RPM-GPG-KEY-fedora-19-secondary
-rw-r–r–. 1 root root 3819 Aug 21 13:36 RPM-GPG-KEY-fedora-19-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-19-x86_64 β†’ RPM-GPG-KEY-fedora-19-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-20-armhfp β†’ RPM-GPG-KEY-fedora-20-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-20-i386 β†’ RPM-GPG-KEY-fedora-20-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-20-ppc β†’ RPM-GPG-KEY-fedora-20-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-20-ppc64 β†’ RPM-GPG-KEY-fedora-20-secondary
-rw-r–r–. 1 root root 1658 Aug 21 13:36 RPM-GPG-KEY-fedora-20-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-20-s390 β†’ RPM-GPG-KEY-fedora-20-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-20-s390x β†’ RPM-GPG-KEY-fedora-20-secondary
-rw-r–r–. 1 root root 3819 Aug 21 13:36 RPM-GPG-KEY-fedora-20-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-20-x86_64 β†’ RPM-GPG-KEY-fedora-20-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-21-aarch64 β†’ RPM-GPG-KEY-fedora-21-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-21-armhfp β†’ RPM-GPG-KEY-fedora-21-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-21-i386 β†’ RPM-GPG-KEY-fedora-21-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-21-ppc64 β†’ RPM-GPG-KEY-fedora-21-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-21-ppc64le β†’ RPM-GPG-KEY-fedora-21-secondary
-rw-r–r–. 1 root root 1658 Aug 21 13:36 RPM-GPG-KEY-fedora-21-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-21-s390 β†’ RPM-GPG-KEY-fedora-21-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-21-s390x β†’ RPM-GPG-KEY-fedora-21-secondary
-rw-r–r–. 1 root root 3819 Aug 21 13:36 RPM-GPG-KEY-fedora-21-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-21-x86_64 β†’ RPM-GPG-KEY-fedora-21-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-22-aarch64 β†’ RPM-GPG-KEY-fedora-22-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-22-armhfp β†’ RPM-GPG-KEY-fedora-22-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-22-i386 β†’ RPM-GPG-KEY-fedora-22-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-22-ppc64 β†’ RPM-GPG-KEY-fedora-22-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-22-ppc64le β†’ RPM-GPG-KEY-fedora-22-secondary
-rw-r–r–. 1 root root 1658 Aug 21 13:36 RPM-GPG-KEY-fedora-22-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-22-s390 β†’ RPM-GPG-KEY-fedora-22-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-22-s390x β†’ RPM-GPG-KEY-fedora-22-secondary
-rw-r–r–. 1 root root 3819 Aug 21 13:36 RPM-GPG-KEY-fedora-22-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-22-x86_64 β†’ RPM-GPG-KEY-fedora-22-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-23-aarch64 β†’ RPM-GPG-KEY-fedora-23-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-23-armhfp β†’ RPM-GPG-KEY-fedora-23-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-23-i386 β†’ RPM-GPG-KEY-fedora-23-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-23-ppc64 β†’ RPM-GPG-KEY-fedora-23-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-23-ppc64le β†’ RPM-GPG-KEY-fedora-23-secondary
-rw-r–r–. 1 root root 1674 Aug 21 13:36 RPM-GPG-KEY-fedora-23-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-23-s390 β†’ RPM-GPG-KEY-fedora-23-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-23-s390x β†’ RPM-GPG-KEY-fedora-23-secondary
-rw-r–r–. 1 root root 3145 Aug 21 13:36 RPM-GPG-KEY-fedora-23-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-23-x86_64 β†’ RPM-GPG-KEY-fedora-23-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-24-aarch64 β†’ RPM-GPG-KEY-fedora-24-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-24-armhfp β†’ RPM-GPG-KEY-fedora-24-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-24-i386 β†’ RPM-GPG-KEY-fedora-24-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-24-ppc64 β†’ RPM-GPG-KEY-fedora-24-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-24-ppc64le β†’ RPM-GPG-KEY-fedora-24-secondary
-rw-r–r–. 1 root root 1657 Aug 21 13:36 RPM-GPG-KEY-fedora-24-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-24-s390x β†’ RPM-GPG-KEY-fedora-24-secondary
-rw-r–r–. 1 root root 3128 Aug 21 13:36 RPM-GPG-KEY-fedora-24-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-24-x86_64 β†’ RPM-GPG-KEY-fedora-24-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-25-aarch64 β†’ RPM-GPG-KEY-fedora-25-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-25-armhfp β†’ RPM-GPG-KEY-fedora-25-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-25-i386 β†’ RPM-GPG-KEY-fedora-25-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-25-ppc64 β†’ RPM-GPG-KEY-fedora-25-secondary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-25-ppc64le β†’ RPM-GPG-KEY-fedora-25-secondary
-rw-r–r–. 1 root root 1670 Aug 21 13:36 RPM-GPG-KEY-fedora-25-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-25-s390x β†’ RPM-GPG-KEY-fedora-25-secondary
-rw-r–r–. 1 root root 3132 Aug 21 13:36 RPM-GPG-KEY-fedora-25-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-25-x86_64 β†’ RPM-GPG-KEY-fedora-25-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-26-aarch64 β†’ RPM-GPG-KEY-fedora-26-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-26-armhfp β†’ RPM-GPG-KEY-fedora-26-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-26-i386 β†’ RPM-GPG-KEY-fedora-26-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-26-ppc64 β†’ RPM-GPG-KEY-fedora-26-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-26-ppc64le β†’ RPM-GPG-KEY-fedora-26-primary
-rw-r–r–. 1 root root 1670 Aug 21 13:36 RPM-GPG-KEY-fedora-26-primary
lrwxrwxrwx. 1 root root 31 Aug 21 13:36 RPM-GPG-KEY-fedora-26-s390x β†’ RPM-GPG-KEY-fedora-26-secondary
-rw-r–r–. 1 root root 3132 Aug 21 13:36 RPM-GPG-KEY-fedora-26-secondary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-26-x86_64 β†’ RPM-GPG-KEY-fedora-26-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-27-aarch64 β†’ RPM-GPG-KEY-fedora-27-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-27-armhfp β†’ RPM-GPG-KEY-fedora-27-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-27-i386 β†’ RPM-GPG-KEY-fedora-27-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-27-ppc64 β†’ RPM-GPG-KEY-fedora-27-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-27-ppc64le β†’ RPM-GPG-KEY-fedora-27-primary
-rw-r–r–. 1 root root 1631 Aug 21 13:36 RPM-GPG-KEY-fedora-27-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-27-s390x β†’ RPM-GPG-KEY-fedora-27-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-27-x86_64 β†’ RPM-GPG-KEY-fedora-27-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-28-aarch64 β†’ RPM-GPG-KEY-fedora-28-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-28-armhfp β†’ RPM-GPG-KEY-fedora-28-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-28-i386 β†’ RPM-GPG-KEY-fedora-28-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-28-ppc64 β†’ RPM-GPG-KEY-fedora-28-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-28-ppc64le β†’ RPM-GPG-KEY-fedora-28-primary
-rw-r–r–. 1 root root 1631 Aug 21 13:36 RPM-GPG-KEY-fedora-28-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-28-s390x β†’ RPM-GPG-KEY-fedora-28-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-28-x86_64 β†’ RPM-GPG-KEY-fedora-28-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-29-aarch64 β†’ RPM-GPG-KEY-fedora-29-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-29-armhfp β†’ RPM-GPG-KEY-fedora-29-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-29-i386 β†’ RPM-GPG-KEY-fedora-29-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-29-ppc64 β†’ RPM-GPG-KEY-fedora-29-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-29-ppc64le β†’ RPM-GPG-KEY-fedora-29-primary
-rw-r–r–. 1 root root 1631 Aug 21 13:36 RPM-GPG-KEY-fedora-29-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-29-s390x β†’ RPM-GPG-KEY-fedora-29-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-29-x86_64 β†’ RPM-GPG-KEY-fedora-29-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-30-aarch64 β†’ RPM-GPG-KEY-fedora-30-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-30-armhfp β†’ RPM-GPG-KEY-fedora-30-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-30-i386 β†’ RPM-GPG-KEY-fedora-30-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-30-ppc64le β†’ RPM-GPG-KEY-fedora-30-primary
-rw-r–r–. 1 root root 1639 Aug 21 13:36 RPM-GPG-KEY-fedora-30-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-30-s390x β†’ RPM-GPG-KEY-fedora-30-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-30-x86_64 β†’ RPM-GPG-KEY-fedora-30-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-31-aarch64 β†’ RPM-GPG-KEY-fedora-31-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-31-armhfp β†’ RPM-GPG-KEY-fedora-31-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-31-i386 β†’ RPM-GPG-KEY-fedora-31-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-31-ppc64le β†’ RPM-GPG-KEY-fedora-31-primary
-rw-r–r–. 1 root root 1648 Aug 21 13:36 RPM-GPG-KEY-fedora-31-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-31-s390x β†’ RPM-GPG-KEY-fedora-31-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-31-x86_64 β†’ RPM-GPG-KEY-fedora-31-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-32-aarch64 β†’ RPM-GPG-KEY-fedora-32-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-32-armhfp β†’ RPM-GPG-KEY-fedora-32-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-32-i386 β†’ RPM-GPG-KEY-fedora-32-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-32-ppc64le β†’ RPM-GPG-KEY-fedora-32-primary
-rw-r–r–. 1 root root 1639 Aug 21 13:36 RPM-GPG-KEY-fedora-32-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-32-s390x β†’ RPM-GPG-KEY-fedora-32-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-32-x86_64 β†’ RPM-GPG-KEY-fedora-32-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-33-aarch64 β†’ RPM-GPG-KEY-fedora-33-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-33-armhfp β†’ RPM-GPG-KEY-fedora-33-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-33-i386 β†’ RPM-GPG-KEY-fedora-33-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-33-ppc64le β†’ RPM-GPG-KEY-fedora-33-primary
-rw-r–r–. 1 root root 1639 Aug 21 13:36 RPM-GPG-KEY-fedora-33-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-33-s390x β†’ RPM-GPG-KEY-fedora-33-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-33-x86_64 β†’ RPM-GPG-KEY-fedora-33-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-34-aarch64 β†’ RPM-GPG-KEY-fedora-34-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-34-armhfp β†’ RPM-GPG-KEY-fedora-34-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-34-i386 β†’ RPM-GPG-KEY-fedora-34-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-34-ppc64le β†’ RPM-GPG-KEY-fedora-34-primary
-rw-r–r–. 1 root root 1668 Aug 21 13:36 RPM-GPG-KEY-fedora-34-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-34-s390x β†’ RPM-GPG-KEY-fedora-34-primary
lrwxrwxrwx. 1 root root 29 Aug 21 13:36 RPM-GPG-KEY-fedora-34-x86_64 β†’ RPM-GPG-KEY-fedora-34-primary
lrwxrwxrwx. 1 root root 28 Aug 21 13:36 RPM-GPG-KEY-fedora-7-i386 β†’ RPM-GPG-KEY-fedora-7-primary
lrwxrwxrwx. 1 root root 28 Aug 21 13:36 RPM-GPG-KEY-fedora-7-ppc β†’ RPM-GPG-KEY-fedora-7-primary
lrwxrwxrwx. 1 root root 28 Aug 21 13:36 RPM-GPG-KEY-fedora-7-ppc64 β†’ RPM-GPG-KEY-fedora-7-primary
-rw-r–r–. 1 root root 1519 Aug 21 13:36 RPM-GPG-KEY-fedora-7-primary
lrwxrwxrwx. 1 root root 28 Aug 21 13:36 RPM-GPG-KEY-fedora-7-x86_64 β†’ RPM-GPG-KEY-fedora-7-primary
lrwxrwxrwx. 1 root root 28 Aug 21 13:36 RPM-GPG-KEY-fedora-8-i386 β†’ RPM-GPG-KEY-fedora-8-primary
lrwxrwxrwx. 1 root root 28 Aug 21 13:36 RPM-GPG-KEY-fedora-8-ppc β†’ RPM-GPG-KEY-fedora-8-primary
lrwxrwxrwx. 1 root root 28 Aug 21 13:36 RPM-GPG-KEY-fedora-8-ppc64 β†’ RPM-GPG-KEY-fedora-8-primary
-rw-r–r–. 1 root root 2388 Aug 21 13:36 RPM-GPG-KEY-fedora-8-primary
-rw-r–r–. 1 root root 1519 Aug 21 13:36 RPM-GPG-KEY-fedora-8-primary-original
lrwxrwxrwx. 1 root root 28 Aug 21 13:36 RPM-GPG-KEY-fedora-8-x86_64 β†’ RPM-GPG-KEY-fedora-8-primary
lrwxrwxrwx. 1 root root 28 Aug 21 13:36 RPM-GPG-KEY-fedora-9-i386 β†’ RPM-GPG-KEY-fedora-9-primary
lrwxrwxrwx. 1 root root 30 Aug 21 13:36 RPM-GPG-KEY-fedora-9-ia64 β†’ RPM-GPG-KEY-fedora-9-secondary
lrwxrwxrwx. 1 root root 28 Aug 21 13:36 RPM-GPG-KEY-fedora-9-ppc β†’ RPM-GPG-KEY-fedora-9-primary
lrwxrwxrwx. 1 root root 28 Aug 21 13:36 RPM-GPG-KEY-fedora-9-ppc64 β†’ RPM-GPG-KEY-fedora-9-primary
-rw-r–r–. 1 root root 2388 Aug 21 13:36 RPM-GPG-KEY-fedora-9-primary
-rw-r–r–. 1 root root 1519 Aug 21 13:36 RPM-GPG-KEY-fedora-9-primary-original
-rw-r–r–. 1 root root 1694 Aug 21 13:36 RPM-GPG-KEY-fedora-9-secondary
lrwxrwxrwx. 1 root root 28 Aug 21 13:36 RPM-GPG-KEY-fedora-9-x86_64 β†’ RPM-GPG-KEY-fedora-9-primary
-rw-r–r–. 1 root root 1652 Aug 21 13:36 RPM-GPG-KEY-fedora-iot-2019
lrwxrwxrwx. 1 root root 27 Aug 21 13:36 RPM-GPG-KEY-fedora-iot-aarch64 β†’ RPM-GPG-KEY-fedora-iot-2019
lrwxrwxrwx. 1 root root 27 Aug 21 13:36 RPM-GPG-KEY-fedora-iot-armhfp β†’ RPM-GPG-KEY-fedora-iot-2019
lrwxrwxrwx. 1 root root 27 Aug 21 13:36 RPM-GPG-KEY-fedora-iot-i386 β†’ RPM-GPG-KEY-fedora-iot-2019
lrwxrwxrwx. 1 root root 27 Aug 21 13:36 RPM-GPG-KEY-fedora-iot-ppc64le β†’ RPM-GPG-KEY-fedora-iot-2019
lrwxrwxrwx. 1 root root 27 Aug 21 13:36 RPM-GPG-KEY-fedora-iot-s390x β†’ RPM-GPG-KEY-fedora-iot-2019
lrwxrwxrwx. 1 root root 27 Aug 21 13:36 RPM-GPG-KEY-fedora-iot-x86_64 β†’ RPM-GPG-KEY-fedora-iot-2019
-rw-r–r–. 1 root root 1676 Aug 21 13:36 RPM-GPG-KEY-fedora-modularity
-rw-rw-r–. 1 olin olin 1700 Jun 27 2019 RPM-GPG-KEY-rpmfusion-free-fedora-29
-rw-rw-r–. 1 olin olin 1688 Jun 27 2019 RPM-GPG-KEY-rpmfusion-cuda-2019
lrwxrwxrwx. 1 root root 44 Sep 1 2018 RPM-GPG-KEY-rpmfusion-free-fedora-28 β†’ RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
lrwxrwxrwx. 1 root root 44 Sep 1 2018 PM-GPG-KEY-rpmfusion-free-fedora-28 β†’ RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
lrwxrwxrwx. 1 root root 44 Sep 1 2018 PM-GPG-KEY-rpmfusion-free-fedora28 β†’ RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
lrwxrwxrwx. 1 root root 44 Sep 1 2018 PM-GPG-KEY-rpmfusion-fedora-rawhide β†’ RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
lrwxrwxrwx. 1 root root 44 Sep 1 2018 PM-GPG-KEY-rpmfusion-fedora-latest β†’ RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
lrwxrwxrwx. 1 root root 44 Sep 1 2018 PM-GPG-KEY-rpmfusion-free β†’ RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
-rw-r–r–. 1 root root 1700 Sep 1 2018 RPM-GPG-KEY-rpmfusion-free-fedora-28-primary
-rw-r–r–. 1 root root 1726 Sep 1 2018 RPM-GPG-KEY-adobe-linux
-rw-r–r–. 1 root root 1662 Sep 1 2018 RPM-GPG-KEY-EPEL-7
-rw-r–r–. 1 root root 1676 Sep 1 2018 RPM-GPG-KEY-rpmfusion-free-fedora-26-primary
-rw-r–r–. 1 root root 1694 Sep 1 2018 RPM-GPG-KEY-rpmfusion-free-fedora-27-primary

At this point it may be a conflict with rpmfusion repo packages and the change of keying they have done. They changed the key signature plan between f31 and f32.

What I would suggest now, since the nvidia packages are not up to date anyway, is to do a bit of bit of finessing to clear out the conflicts.
first, clean out the rpmfusion repos. You can find out exactly which packages are installed and need removed with

rpm -qa | grep rpmfusion .

After you use dnf to remove those packages (which will also remove the rpmfusion repos), then do

"dnf upgrade --refresh" 
followed by 
"dnf system-upgrade download .... "

to make sure all the packages are properly downloaded. As usual, if there are any errors reported here they need to be fixed before you continue to the reboot step.

After the download and reboot steps are completed successfully then do the command line reinstall of the rpmfusion repos with

sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm 

as instructed at rpmfusion. This will make certain the rpmfusion repos are reinstalled and should also update the necessary keys. You may have to tell the dnf update yes when it asks to import the keys for the newly enable repos.

Once that completes successfully you should be able to do another β€œdnf upgrade --refresh” and update F32 fully, including the nvidia packages.

If you get this far successfully then you should be ready to do the upgrade to F33 any time you choose.

EDIT
After posting, I thought about the actual dnf command here for the rpmfusion repos. That says to install the repo and since it is already installed of course it will fail.
I have the following rpmfusion packages installed and I suspect yours are similar.

# rpm -qa | grep rpmfusion
rpmfusion-free-release-33-1.noarch
rpmfusion-nonfree-release-33-1.noarch

Try first doing

dnf update rpmfusion* 

to see if the repo config can be fixed and the newer keys made available before you remove those rpmfusion repo packages.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.