From c838ac0e5a1c5a30afba5ccc43db7c0dbfd9710f Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Wed, 6 Jan 2010 13:07:45 +0000 Subject: [PATCH] iron out non-relevant error messages --- plc.d/gpg | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/plc.d/gpg b/plc.d/gpg index 5fd3923..304b1ea 100755 --- a/plc.d/gpg +++ b/plc.d/gpg @@ -113,7 +113,12 @@ EOF rpm --allmatches -e gpg-pubkey check fi - rpm --import /etc/pki/rpm-gpg/* + # starting with rpm-4.6, this fails when run a second time + # it would be complex to do this properly based on the filename, + # as /etc/pki/rpm-gpg/ typically has many symlinks to the same file + # see also http://fedoranews.org/tchung/gpg/ + # so just ignore the result + rpm --import /etc/pki/rpm-gpg/* || : check # Make GPG key readable by apache so that the API can sign peer requests -- 2.43.0