2fa22c2268
The syntax is valid from v0.70 on (Debian Wheezy, Ubuntu Oneiric and later). It includes Unattended-Upgrade::Origins-Patterns both for Debian and Ubuntu, which even work on systems with both package sources enables. On Debian- or Ubuntu-only systems it doesn't hurt to have both Patterns included.
19 lines
635 B
Text
19 lines
635 B
Text
// this file is managed by puppet !
|
|
|
|
Unattended-Upgrade::Origins-Pattern {
|
|
// Debian
|
|
"o=${distro_id},a=${distro_codename}";
|
|
"o=${distro_id},a=${distro_codename},l=Debian-security";
|
|
"o=${distro_id} Backports,a=${distro_codename}-backports";
|
|
// Ubuntu specific
|
|
"o=${distro_id},a=${distro_codename}-security";
|
|
"o=${distro_id},a=${distro_codename}-backports";
|
|
"o=${distro_id},a=${distro_codename}-proposed";
|
|
};
|
|
|
|
APT::Periodic::Update-Package-Lists "1";
|
|
APT::Periodic::Download-Upgradeable-Packages "1";
|
|
APT::Periodic::Unattended-Upgrade "1";
|
|
|
|
Unattended-Upgrade::Mail "root";
|
|
Unattended-Upgrade::MailOnlyOnError "true";
|