summaryrefslogtreecommitdiffstats
path: root/bin/lts-cve-triage.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2017-02-05 18:38:54 +0000
committerGuido Günther <agx@sigxcpu.org>2017-02-05 18:38:54 +0000
commite6092e524c4469867c230b3e6fa33f7cc54cd3ab (patch)
tree0daaccdd242d98e77bf47b27d7d68417baf5af4c /bin/lts-cve-triage.py
parent385c17af7bbcd7463272c305786702640a38d210 (diff)
lts-cve-triage: exclude limited support packges by default
git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@48724 e39458fd-73e7-0310-bf30-c45bca0a0e42
Diffstat (limited to 'bin/lts-cve-triage.py')
-rwxr-xr-xbin/lts-cve-triage.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/lts-cve-triage.py b/bin/lts-cve-triage.py
index 1c757b510e..975061f02f 100755
--- a/bin/lts-cve-triage.py
+++ b/bin/lts-cve-triage.py
@@ -65,8 +65,8 @@ parser.add_argument('--skip-dla-needed', action='store_true',
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 @@ args = parser.parse_args()
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))

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