Hi guys is there a gpgkey for rpmfind rpms? if where have they put it?
I think rpmfind is basically a mirror of lots of other sites, so the packages will have different signers based on where each package came from.
If you have gpg set up so that it can query a key server, you should be able to use a given key (e.g. 12345678) as follows:
# gpg --recv-key 12345678 # gpg --export --armor 12345678 > 12345678.asc # rpm --import 12345678.asc # rm 12345678.asc
(note: this specific example - 12345678 - won't work but a genuine RPM signing key should do)
Paul.