Comment auto-import of keys

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@812060 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/check_staged_release.sh b/check_staged_release.sh
index 065713c..feb1d6c 100755
--- a/check_staged_release.sh
+++ b/check_staged_release.sh
@@ -4,8 +4,11 @@
 DOWNLOAD=${2:-/tmp/felix-staging}
 mkdir ${DOWNLOAD} 2>/dev/null
 
-wget --no-check-certificate -P "${DOWNLOAD}" http://www.apache.org/dist/felix/KEYS 
-gpg --import "${DOWNLOAD}/KEYS"
+# The following code automatically imports the signing KEYS, but it may actually be
+# better to download them from a key server and/or let the user choose what keys
+# he wants to import.
+#wget --no-check-certificate -P "${DOWNLOAD}" http://www.apache.org/dist/felix/KEYS 
+#gpg --import "${DOWNLOAD}/KEYS"
 
 if [ -z "${STAGING}" -o ! -d "${DOWNLOAD}" ]
 then