Unattended-Upgrade::Origins-Pattern { | |
// 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"; | |
}; | |
// List of packages to not update (regexp are supported) | |
Unattended-Upgrade::Package-Blacklist { | |
}; | |
// 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 | |
// 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"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment