Last active
June 13, 2018 09:59
-
-
Save jsravn/4ce35c3785b3fb5bd7770f12c45ae088 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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