summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2015-10-13 00:45:01 +0200
committermh <mh@immerda.ch>2015-10-13 00:45:01 +0200
commitffca95a6b0281ab49f4a626a1ee6a68257769388 (patch)
tree62313aea70f7cd5a55e32f313d9df7003c3976e9
parent11dca77caa10423d8b1d722ff950aa20b1c41080 (diff)
this is handled outside & centrally
-rw-r--r--files/plugins/check_gpg8
1 files changed, 0 insertions, 8 deletions
diff --git a/files/plugins/check_gpg b/files/plugins/check_gpg
index bf4b930..1a8df84 100644
--- a/files/plugins/check_gpg
+++ b/files/plugins/check_gpg
@@ -82,14 +82,6 @@ if [ -z "$1" ]; then
fi
key="$1"
-# GPG is too stupid to error out when asked to refresh a key that's not in the
-# local keyring so we need to perform another call to verify this first.
-output=$( { gpg $homedir --list-key "$key" >/dev/null && gpg $homedir --refresh "$key" >/dev/null; } 2>&1 )
-if [ $? -ne 0 ]; then
- echo "UNKNOWN: $output"
- exit 3
-fi
-
if [ "$(gpg $homedir --check-sig "$key" | grep "^rev!")" != "" ]; then
echo "CRITICAL: key '$key' has been revoked!"
exit 1