[Secure-testing-commits] r33648 - bin

Salvatore Bonaccorso carnil at moszumanska.debian.org
Fri Apr 17 06:57:55 UTC 2015


Author: carnil
Date: 2015-04-17 06:57:55 +0000 (Fri, 17 Apr 2015)
New Revision: 33648

Modified:
   bin/update
Log:
Workaround wget/gnutls issue by using curl for now when fetching allitems.html.gz from mitre

Modified: bin/update
===================================================================
--- bin/update	2015-04-17 06:21:39 UTC (rev 33647)
+++ bin/update	2015-04-17 06:57:55 UTC (rev 33648)
@@ -8,7 +8,12 @@
 
 cd CVE
 rm -f allitems.html
-wget --quiet https://cve.mitre.org/data/downloads/allitems.html.gz
+# wget disabled since fetching allitems.html.gz via wget fails since 2015-04-09 from
+# cve.mitre.org, add workaround with curl until solved
+# wget --quiet https://cve.mitre.org/data/downloads/allitems.html.gz
+# Note: ~/.curlrc on soler contains:
+# capath=/etc/ssl/ca-global
+curl -s -o allitems.html.gz https://cve.mitre.org/data/downloads/allitems.html.gz
 gunzip allitems.html.gz
 ../../bin/updatelist allitems.html ../DSA/list ../DTSA/list ../DLA/list list > list.new
 mv -f list.new list




More information about the Secure-testing-commits mailing list