summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSalvatore Bonaccorso <carnil@debian.org>2015-05-05 04:29:58 +0000
committerSalvatore Bonaccorso <carnil@debian.org>2015-05-05 04:29:58 +0000
commite1bccd75438518d2b170bf9b17b999af593ad940 (patch)
treee40f76617d241ca6d1b37ae41753095ac94350e7
parent02c08103feb07df6d9665898ee8b15db5e78d47b (diff)
Adjust some places where jessie -> stretch as testing release was missing
git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@34072 e39458fd-73e7-0310-bf30-c45bca0a0e42
-rw-r--r--bin/tracker_service.py2
-rw-r--r--lib/python/security_db.py6
2 files changed, 4 insertions, 4 deletions
diff --git a/bin/tracker_service.py b/bin/tracker_service.py
index dd4e5590c0..807353bad2 100644
--- a/bin/tracker_service.py
+++ b/bin/tracker_service.py
@@ -875,7 +875,7 @@ to improve our documentation and procedures, so feedback is welcome.""")])])
(SELECT testing.version_id < stable.version_id
FROM source_packages AS testing, source_packages AS stable
WHERE testing.name = testing_status.package
- AND testing.release = 'jessie'
+ AND testing.release = 'stretch'
AND testing.subrelease = ''
AND testing.archive = testing_status.section
AND stable.name = testing_status.package
diff --git a/lib/python/security_db.py b/lib/python/security_db.py
index b316594756..36c0d62476 100644
--- a/lib/python/security_db.py
+++ b/lib/python/security_db.py
@@ -989,7 +989,7 @@ class DB:
"""Calculate vulnerable packages.
To each package note, a release-specific vulnerability status
- is attached. Currently, only jessie/testing is processed.
+ is attached. Currently, only stretch/testing is processed.
Returns a list strings describing inconsistencies.
"""
@@ -1005,7 +1005,7 @@ class DB:
# The following does not work because stable->security ->
# testing -> unstable propagation is no longer available.
if False:
- # Ignore jessie/testing because stable issues may be
+ # Ignore stretch/testing because stable issues may be
# fast-tracked into testing, bypassing unstable.
for (bug_name, pkg_name, rel, unstable_ver, rel_ver) \
in list(cursor.execute(
@@ -1013,7 +1013,7 @@ class DB:
a.fixed_version, b.fixed_version
FROM package_notes a, package_notes b
WHERE a.bug_name = b.bug_name AND a.package = b.package
- AND a.release = '' AND b.release NOT IN ('', 'jessie')
+ AND a.release = '' AND b.release NOT IN ('', 'stretch')
AND a.fixed_version IS NOT NULL
AND a.fixed_version_id < b.fixed_version_id""")):
b = bugs.BugFromDB(cursor, bug_name)

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