Hello,
As I hit this problem today again, I debugged a bit. The reason this
fails is that (by default) check_apt calls `/usr/bin/apt-get -o
Debug::NoLocking=true -s -qq upgrade`. When removing the -qq (to make
apt-get a bit more talkative) I get today:
root@quarterberry:~# /usr/bin/apt-get -o Debug::NoLocking=true -s upgrade
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Calculating upgrade... Done
The following packages have been kept back:
linux-image-arm64
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
so linux-image-arm64 is kept back as it introduces new dependant
packages. With dist-upgrade the kernel isn't kept back.
check_apt can be made to use dist-upgrade instead of upgrade using `-d`.
I wonder if that would be the saner default.
Best regards
Uwe