From 0fa2648f30de6fea4c41c3bed780977ed176ae37 Mon Sep 17 00:00:00 2001 From: niusmallnan Date: Tue, 3 Apr 2018 14:35:06 +0800 Subject: [PATCH] Remove other keyservers --- scripts/download | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/download b/scripts/download index ec705ee..1696def 100755 --- a/scripts/download +++ b/scripts/download @@ -16,9 +16,7 @@ curl -sL ${KERNEL_URL}${KERNEL_SIGN} > ${KERNEL_SIGN} # grab gregkh's stable signing key GPG_KEY="6092693E" -gpg2 --keyserver hkp://keys.gnupg.net --recv-keys $GPG_KEY \ - || gpg2 --keyserver pgp.mit.edu --recv-keys $GPG_KEYS \ - || gpg2 --keyserver keyserver.pgp.com --recv-keys $GPG_KEYS +gpg2 --keyserver hkp://keys.gnupg.net --recv-keys $GPG_KEY if ! xz -cd ${KERNEL_TAR} | gpg2 --verify ${KERNEL_SIGN} - ; then echo "ERROR: ${KERNEL_TAR} signing error" 1>&2