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 _______________________________________________ Secure-testing-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/secure-testing-commits

