在 Ubuntu 16.04 服务器上,我启用了 AutomaticSecurityUpdates,它运行良好。我还希望它在需要时在晚上自动重启。为此,我输入了以下内容/etc/apt/apt.conf.d/50unattended-upgrades
:
// Automatically reboot *WITHOUT CONFIRMATION*
// if the file /var/run/reboot-required is found after the upgrade
Unattended-Upgrade::Automatic-Reboot "true";
// If automatic reboot is enabled and needed, reboot at the specific
// time instead of immediately
// Default: "now"
Unattended-Upgrade::Automatic-Reboot-Time "02:00";
这种情况已经持续了两天了,但是当我通过 ssh 进入时我仍然可以看到,*** System restart required ***
并且正常运行时间已经超过 7 天。
有人知道为什么这不起作用吗?