#1010520 debian-security-support: check-support-status uses desired state instead of current state #1010520
- Package:
- debian-security-support
- Source:
- debian-security-support
- Submitter:
- justin
- Date:
- 2022-05-03 13:48:04 UTC
- Severity:
- normal
Dear Maintainer,
Used check-support-status to identify problematic packages. Tried to purge them, but
could not due to dependencies. Went to confirm that problematic packages
were still listed, but they were not.
Modified source of check-support-status to use current state instead of
desired state
awk '($1=="install"){print}' |
becomes
awk '($3=="installed"){print}' |
This fixes problem as expected
jrd