In der Datei /etc/apt/apt.conf.d/50unattended-upgrades müssen wohl gewisse Zeilen auskommentiert werden. Aktuell sehen die relevanten Zeilen so aus:
Code: Alles auswählen
Unattended-Upgrade::Origins-Pattern {
// Codename based matching:
// This will follow the migration of a release through different
// archives (e.g. from testing to stable and later oldstable).
// "o=Debian,n=jessie";
// "o=Debian,n=jessie-updates";
// "o=Debian,n=jessie-proposed-updates";
// "o=Debian,n=jessie,l=Debian-Security";
// Archive or Suite based matching:
// Note that this will silently match a different release after
// migration to the specified archive (e.g. testing becomes the
// new stable).
// "o=Debian,a=stable";
// "o=Debian,a=stable-updates";
// "o=Debian,a=proposed-updates";
"origin=Debian,codename=${distro_codename},label=Debian-Security";
};
Der Inhalt der Datei /etc/apt/apt.conf.d/20auto-upgrades sieht Folgendermaßen aus. Ich nehme an, er kann so übernommen werden?
Code: Alles auswählen
APT::Periodic::Update-Package-Lists "1";
APT::Periodic::Unattended-Upgrade "1";
APT::Periodic::AutocleanInterval "0";
APT::Periodic::Download-Upgradeable-Packages "0";