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
commit7727247879bb17cc7122c5b62127b0bfa65d9497 (patch)
tree71da5c41acbe75fe565b999b95dfb71ad4b188ba /bin/update
parent7ee256727c4b9c6e8050fe5b4dedf7b2cbab597d (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