Re: gpg-pubkey
Seth Vidal <[email protected]>
| Newsgroups | gmane.linux.rpm.yum |
|---|---|
| Message-ID | <[email protected]> |
On Tue, 5 May 2009, Gerry Reno wrote: > In the rpm dbs there are gpg-pubkey-XXXXXXX listing. These mess up the > listing of packages in scripts. Is there a --ignore-keys option or something > similar to rpm or yum that will ignore these entries? > in what kind of scripts are you seeing this? There's no option to ignore them in rpm but yum list installed shouldn't output them. However if you're just worried about ignoring them in an rpm -qa output then run: rpm -qa | grep -v gpg-pubkey that will filter them out. -sv