У меня в основном та же проблема, что и в этом вопросе: unattended-updates не перезагружается
На моем Debian wheezy я установил автоматические обновления, которые правильно обновляют мои пакеты каждую ночь, но при необходимости перезагрузки не происходит (я проверил, запустив checkrestart
который показывает мне многие процессы, использующие старые версии обновленных файлов).
Как упоминалось здесь unattended-updates не перезагружается Я установил update-notifier-common
. Но при необходимости он все равно не перезагружается.
Вот мой конфиг:
/etc/apt/apt.conf.d/50unattended-upgrades
// Automatically upgrade packages from these origin patterns
Unattended-Upgrade::Origins-Pattern {
"origin=Debian,archive=stable,label=Debian-Security";
};
Unattended-Upgrade::MinimalSteps "true";
// Send email to this address for problems or packages upgrades
// If empty or unset then no email is sent, make sure that you
// have a working mail setup on your system. A package that provides
// 'mailx' must be installed. E.g. "user@example.com"
Unattended-Upgrade::Mail "[my email address]";
// Do automatic removal of new unused dependencies after the upgrade
// (equivalent to apt-get autoremove)
Unattended-Upgrade::Remove-Unused-Dependencies "true";
// Automatically reboot *WITHOUT CONFIRMATION* if a
// the file /var/run/reboot-required is found after the upgrade
Unattended-Upgrade::Automatic-Reboot "true";
/etc/apt/apt.conf.d/20auto-upgrades
// Enable the update/upgrade script (0=disable)
APT::Periodic::Enable "1";
// Do "apt-get update" automatically every n-days (0=disable)
APT::Periodic::Update-Package-Lists "1";
// Run the "unattended-upgrade" security upgrade script
// every n-days (0=disabled)
// Requires the package "unattended-upgrades" and will write
// a log in /var/log/unattended-upgrades
APT::Periodic::Unattended-Upgrade "1";