Author: gnodet
Date: Mon Sep 7 09:36:18 2009
New Revision: 812060
URL: http://svn.apache.org/viewvc?rev=812060&view=rev
Log:
Comment auto-import of keys
Modified:
felix/trunk/check_staged_release.sh
Modified: felix/trunk/check_staged_release.sh
URL:
http://svn.apache.org/viewvc/felix/trunk/check_staged_release.sh?rev=812060&r1=812059&r2=812060&view=diff
==============================================================================
--- felix/trunk/check_staged_release.sh (original)
+++ felix/trunk/check_staged_release.sh Mon Sep 7 09:36:18 2009
@@ -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