50unattended-upgrades.Debian.bookworm 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. //
  2. // Unattended Upgrades Configuration (Salt managed)
  3. //
  4. // Unattended-Upgrade::Origins-Pattern controls which packages are
  5. // upgraded.
  6. //
  7. // Lines below have the format "keyword=value,...". A
  8. // package will be upgraded only if the values in its metadata match
  9. // all the supplied keywords in a line. (In other words, omitted
  10. // keywords are wild cards.) The keywords originate from the Release
  11. // file, but several aliases are accepted. The accepted keywords are:
  12. // a,archive,suite (eg, "stable")
  13. // c,component (eg, "main", "contrib", "non-free")
  14. // l,label (eg, "Debian", "Debian-Security")
  15. // o,origin (eg, "Debian", "Unofficial Multimedia Packages")
  16. // n,codename (eg, "jessie", "jessie-updates")
  17. // site (eg, "http.debian.net")
  18. // The available values on the system are printed by the command
  19. // "apt-cache policy", and can be debugged by running
  20. // "unattended-upgrades -d" and looking at the log file.
  21. //
  22. // Within lines unattended-upgrades allows 2 macros whose values are
  23. // derived from /etc/debian_version:
  24. // ${distro_id} Installed origin.
  25. // ${distro_codename} Installed codename (eg, "buster")
  26. Unattended-Upgrade::Origins-Pattern {
  27. // Codename based matching:
  28. // This will follow the migration of a release through different
  29. // archives (e.g. from testing to stable and later oldstable).
  30. // Software will be the latest available for the named release,
  31. // but the Debian release itself will not be automatically upgraded.
  32. "origin=Debian,codename=${distro_codename}-updates";
  33. "origin=Debian,codename=${distro_codename}-proposed-updates";
  34. "origin=Debian,codename=${distro_codename},label=Debian";
  35. "origin=Debian,codename=${distro_codename},label=Debian-Security";
  36. "origin=Debian,codename=${distro_codename}-security,label=Debian-Security";
  37. // Icigna2
  38. "o=debian icinga-${distro_codename},a=icinga-${distro_codename}";
  39. // SaltStack
  40. "o=SaltStack,a=stable,n=${distro_codename}";
  41. };
  42. // List of packages to not update
  43. Unattended-Upgrade::Package-Blacklist {
  44. "bird";
  45. "ifupdown2";
  46. };
  47. // Send email to this address for problems or packages upgrades
  48. // If empty or unset then no email is sent, make sure that you
  49. // have a working mail setup on your system. A package that provides
  50. // 'mailx' must be installed. E.g. "user@example.com"
  51. Unattended-Upgrade::Mail "root";
  52. // Set this value to "true" to get emails only on errors. Default
  53. // is to always send a mail if Unattended-Upgrade::Mail is set
  54. Unattended-Upgrade::MailOnlyOnError "true";
  55. // Remove unused automatically installed kernel-related packages
  56. // (kernel images, kernel headers and kernel version locked tools).
  57. Unattended-Upgrade::Remove-Unused-Kernel-Packages "true";
  58. // Do automatic removal of unused packages after the upgrade
  59. // (equivalent to apt-get autoremove)
  60. Unattended-Upgrade::Remove-Unused-Dependencies "true";
  61. // Do automatic removal of newly unused dependencies after the upgrade
  62. Unattended-Upgrade::Remove-New-Unused-Dependencies "true";
  63. // Automatically reboot *WITHOUT CONFIRMATION* if
  64. // the file /var/run/reboot-required is found after the upgrade
  65. Unattended-Upgrade::Automatic-Reboot "false";
  66. // Enable logging to syslog. Default is False
  67. Unattended-Upgrade::SyslogEnable "true";
  68. // Specify syslog facility. Default is daemon
  69. Unattended-Upgrade::SyslogFacility "daemon";
  70. // Force dpkg to keep any existing configuration file regardless of
  71. // what the package might bring
  72. DPkg::Options:: "--force-confold";