summaryrefslogtreecommitdiffstats
path: root/bin/lts-cve-triage.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2015-06-26 11:47:54 +0000
committerGuido Günther <agx@sigxcpu.org>2015-06-26 11:47:54 +0000
commit05f610588ccdc8ac90a6980dd3796790638c80a2 (patch)
tree566178865950eaeb239cceb0b46720583047f52d /bin/lts-cve-triage.py
parent5188313d9f1b4f3432726c57c632564210783212 (diff)
Revert "lts-cve-triage: allow to skip packages already in dla-needed.txt"
We wanted to wait for review feedback This reverts commit 5b3a9ca8fbe9dd3a7dbd679ba37ee712c5334859. git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@35172 e39458fd-73e7-0310-bf30-c45bca0a0e42
Diffstat (limited to 'bin/lts-cve-triage.py')
-rwxr-xr-xbin/lts-cve-triage.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/bin/lts-cve-triage.py b/bin/lts-cve-triage.py
index 3531a393dd..b396f80b43 100755
--- a/bin/lts-cve-triage.py
+++ b/bin/lts-cve-triage.py
@@ -15,7 +15,6 @@
# You should have received a copy of the GNU General Public License
# along with this file. If not, see <https://www.gnu.org/licenses/>.
-import argparse
import collections
from tracker_data import TrackerData, RELEASES
@@ -40,12 +39,6 @@ LIST_NAMES = (
lists = collections.defaultdict(lambda: collections.defaultdict(lambda: []))
-parser = argparse.ArgumentParser(
- description='Find CVEs to triage')
-parser.add_argument('--skip-dla-needed', action='store_true',
- help='Skip packages already in dla-needed.txt')
-args = parser.parse_args()
-
def add_to_list(key, pkg, issue):
assert key in [l[0] for l in LIST_NAMES]
@@ -53,9 +46,6 @@ def add_to_list(key, pkg, issue):
for pkg in tracker.iterate_packages():
- if args.skip_dla_needed and pkg in tracker.dla_needed.keys():
- continue
-
for issue in tracker.iterate_pkg_issues(pkg):
status_in_lts = issue.get_status('lts')
status_in_next_lts = issue.get_status('next_lts')

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