[Secure-testing-commits] r48724 - bin
Guido Guenther
agx at moszumanska.debian.org
Sun Feb 5 18:38:54 UTC 2017
Author: agx
Date: 2017-02-05 18:38:54 +0000 (Sun, 05 Feb 2017)
New Revision: 48724
Modified:
bin/lts-cve-triage.py
Log:
lts-cve-triage: exclude limited support packges by default
Modified: bin/lts-cve-triage.py
===================================================================
--- bin/lts-cve-triage.py 2017-02-05 17:56:46 UTC (rev 48723)
+++ bin/lts-cve-triage.py 2017-02-05 18:38:54 UTC (rev 48724)
@@ -65,8 +65,8 @@
help='Skip packages already in dla-needed.txt')
parser.add_argument('--skip-cache-update', action='store_true',
help='Skip updating the tracker data cache')
-parser.add_argument('--ignore-limited', action='store_true',
- help='Ignore packages with limited security support')
+parser.add_argument('--include-limited', action='store_true',
+ help='Include packages with limited security support')
parser.add_argument('--filter', nargs='+', choices=[x[0] for x in LIST_NAMES],
help='Only report on specified lists')
parser.add_argument('--exclude', nargs='+', choices=[x[0] for x in LIST_NAMES],
@@ -75,7 +75,7 @@
tracker = TrackerData(update_cache=not args.skip_cache_update)
unsupported = UnsupportedPackages(update_cache=not args.skip_cache_update)
-if args.ignore_limited:
+if not args.include_limited:
unsupported = unsupported.union(LimitedSupportPackages(update_cache=not args.skip_cache_update))
More information about the Secure-testing-commits
mailing list