summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorSalvatore Bonaccorso <carnil@debian.org>2014-09-01 05:06:14 +0000
committerSalvatore Bonaccorso <carnil@debian.org>2014-09-01 05:06:14 +0000
commit37744cbec4698973c688a4596612c21a5599cff8 (patch)
treead48435a1009ba04fac4c4380aaaae98ccb0c5bd /bin
parent5cbb858955fe552fd59eed209037647777c1a69d (diff)
Revert "add support for squeeze-lts (Closes: #759727 once Florian has applied this to soler.d.o)"
This reverts commit 6357e7f64b5cdab2f194dc5a1ae0ff309bb625f6. git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@28536 e39458fd-73e7-0310-bf30-c45bca0a0e42
Diffstat (limited to 'bin')
-rwxr-xr-xbin/check-syntax6
-rw-r--r--bin/tracker_service.py2
-rwxr-xr-xbin/update2
-rwxr-xr-xbin/updatelist2
4 files changed, 2 insertions, 10 deletions
diff --git a/bin/check-syntax b/bin/check-syntax
index ee23752068..688ea39503 100755
--- a/bin/check-syntax
+++ b/bin/check-syntax
@@ -65,13 +65,9 @@ def parse_DSA(name):
def parse_DTSA(name):
do_parse(construct(bugs.DTSAFile, name))
-def parse_DLA(name):
- do_parse(construct(bugs.DLAFile, name))
-
file_types = {'CVE' : parse_CVE,
'DSA' : parse_DSA,
- 'DTSA' : parse_DTSA,
- 'DLA' : parse_DLA}
+ 'DTSA' : parse_DTSA}
if len(sys.argv) <> 3 or not file_types.has_key(sys.argv[1]):
l = file_types.keys()
diff --git a/bin/tracker_service.py b/bin/tracker_service.py
index 9be7bd5cee..0f0dbc9363 100644
--- a/bin/tracker_service.py
+++ b/bin/tracker_service.py
@@ -342,8 +342,6 @@ data source.""")],
source_xref = self.make_dsa_ref(url, bug.name, 'Debian')
elif source == 'DTSA':
source_xref = 'Debian Testing Security Team'
- elif source == 'DLA':
- source_xref = 'Debian LTS Team'
elif source == 'TEMP':
source_xref = (
'Automatically generated temporary name. Not for external reference.')
diff --git a/bin/update b/bin/update
index 79520153b7..22d50def14 100755
--- a/bin/update
+++ b/bin/update
@@ -10,5 +10,5 @@ cd CVE
rm -f allitems.html
wget --quiet 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
+../../bin/updatelist allitems.html ../DSA/list ../DTSA/list list > list.new
mv -f list.new list
diff --git a/bin/updatelist b/bin/updatelist
index e32b370f48..b103d8b872 100755
--- a/bin/updatelist
+++ b/bin/updatelist
@@ -2,7 +2,6 @@
my $html=shift;
my $dsa_list=shift;
my $dtsa_list=shift;
-my $dla_list=shift;
my $our_list=shift;
my %cves;
@@ -29,7 +28,6 @@ sub read_dsa {
}
read_dsa($dsa_list);
read_dsa($dtsa_list);
-read_dsa($dla_list);
my %listedcves;

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