unattended-upgrades seems to skip certain upgrades, e. g. google chrome upgrade.
A subsequent call of apt-get upgrade then finds and installs the ugrade.
Does this mean, I must schedule apt-get upgrade in addition to my unattended-upgrades config if I want everything automated?
I have configured /etc/apt/apt.conf.d/20auto-upgrades like this:
APT::Periodic::Update-Package-Lists "1";
APT::Periodic::Download-Upgradeable-Packages "1";
APT::Periodic::AutocleanInterval "0";
APT::Periodic::Unattended-Upgrade "1";
And this is my 50unattended-upgrades config (I have taken out all commented lines for better readability):
Unattended-Upgrade::Allowed-Origins {
"${distro_id}:${distro_codename}";
"${distro_id}:${distro_codename}-security";
"${distro_id}ESMApps:${distro_codename}-apps-security";
"${distro_id}ESM:${distro_codename}-infra-security";
"${distro_id}:${distro_codename}-updates";
};
Unattended-Upgrade::Package-Blacklist {
};
Unattended-Upgrade::DevRelease "auto";
Unattended-Upgrade::Automatic-Reboot "true";
Unattended-Upgrade::Automatic-Reboot-WithUsers "true";
Unattended-Upgrade::Automatic-Reboot-Time "08:00";
In principle my unattended-upgrade runs regularly and ok.
A time lag between unattended-upgrades and apt-get upgrade is not the explanation because I had also manually started unattended-upgrades right before apt-get upgrade when I encountered the issue.
Thanks for any help
bpn