bf658dacda
This will run the ua tool to attach an UA token and to enable the esm-infra repos. We also update unattended upgrades to auto pull security updates from the ESM repos. Change-Id: Ifb487d12df7b799d5fd2973d56741e0757bc4d4f
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
// Automatically upgrade packages from these (origin, archive) pairs
|
|
Unattended-Upgrade::Allowed-Origins {
|
|
// ${distro_id} and ${distro_codename} will be automatically expanded
|
|
"${distro_id} stable";
|
|
"${distro_id} ${distro_codename}-security";
|
|
"${distro_id} ${distro_codename}-updates";
|
|
// "${distro_id} ${distro_codename}-proposed-updates";
|
|
"${distro_id}ESM ${distro_codename}-infra-security";
|
|
};
|
|
|
|
// List of packages to not update
|
|
Unattended-Upgrade::Package-Blacklist {
|
|
// "vim";
|
|
// "libc6";
|
|
// "libc6-dev";
|
|
// "libc6-i686";
|
|
};
|
|
|
|
// 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. The package 'mailx'
|
|
// must be installed or anything that provides /usr/bin/mail.
|
|
Unattended-Upgrade::Mail "root";
|
|
|
|
// 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 "false";
|