summaryrefslogtreecommitdiffstats
path: root/bin/update
diff options
context:
space:
mode:
authorSalvatore Bonaccorso <carnil@debian.org>2015-04-17 06:57:55 +0000
committerSalvatore Bonaccorso <carnil@debian.org>2015-04-17 06:57:55 +0000
commitde7ccc1f5ed52a62aaef2e62bf2c8cc405c90bbc (patch)
treea4048d250e0291b24d633095c16261259a87cb31 /bin/update
parentcb565449bb58fcde2df4dd4d3db47b7f35868d00 (diff)
Workaround wget/gnutls issue by using curl for now when fetching allitems.html.gz from mitre
git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@33648 e39458fd-73e7-0310-bf30-c45bca0a0e42
Diffstat (limited to 'bin/update')
-rwxr-xr-xbin/update7
1 files changed, 6 insertions, 1 deletions
diff --git a/bin/update b/bin/update
index 79520153b7..99e034950e 100755
--- a/bin/update
+++ b/bin/update
@@ -8,7 +8,12 @@ fi
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

© 2014-2024 Faster IT GmbH | imprint | privacy policy