[Secure-testing-commits] r28860 - bin

Holger Levsen holger at moszumanska.debian.org
Wed Sep 17 11:29:53 UTC 2014


Author: holger
Date: 2014-09-17 11:29:53 +0000 (Wed, 17 Sep 2014)
New Revision: 28860

Modified:
   bin/tracker_service.py
Log:
bugfix: prevent DSAs being shown on the stable overview and prevent DLAs being how on the oldstable overview

Modified: bin/tracker_service.py
===================================================================
--- bin/tracker_service.py	2014-09-17 11:07:36 UTC (rev 28859)
+++ bin/tracker_service.py	2014-09-17 11:29:53 UTC (rev 28860)
@@ -640,7 +640,8 @@
             for (pkg_name, bug_name, archive, urgency, vulnerable, remote, no_dsa) in \
                     self.db.cursor().execute(
                 """SELECT package, bug, section, urgency, vulnerable, remote, no_dsa
-                FROM %s_status""" % release):
+                FROM %s_status
+                WHERE (bug LIKE 'CVE-%%' OR bug LIKE 'TEMP-%%')""" % release):
                 if bf.urgencyFiltered(urgency, vulnerable):
                     continue
                 if bf.remoteFiltered(remote):




More information about the Secure-testing-commits mailing list