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
commit14a3785568d345912d9b440f282d843cfd8530b3 (patch)
tree342797a0d1b36060844320e55348c641a8a5e68e /bin/update
parent86e57b0ad5a9fea6e1d19535efbe178ccd6e5b2b (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