jail-update.conf 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. # $FreeBSD: stable/12/usr.sbin/freebsd-update/freebsd-update.conf 337338 2018-08-04 22:25:41Z brd $
  2. # Trusted keyprint. Changing this is a Bad Idea unless you've received
  3. # a PGP-signed email from <security-officer@FreeBSD.org> telling you to
  4. # change it and explaining why.
  5. KeyPrint 800651ef4b4c71c27e60786d7b487188970f4b4169cc055784e21eb71d410cc5
  6. # Server or server pool from which to fetch updates. You can change
  7. # this to point at a specific server if you want, but in most cases
  8. # using a "nearby" server won't provide a measurable improvement in
  9. # performance.
  10. ServerName update.FreeBSD.org
  11. # Components of the base system which should be kept updated.
  12. Components world
  13. # Example for updating the userland and the kernel source code only:
  14. # Components src/base src/sys world
  15. # Paths which start with anything matching an entry in an IgnorePaths
  16. # statement will be ignored.
  17. IgnorePaths
  18. # Paths which start with anything matching an entry in an IDSIgnorePaths
  19. # statement will be ignored by "freebsd-update IDS".
  20. IDSIgnorePaths /usr/share/man/cat
  21. IDSIgnorePaths /usr/share/man/whatis
  22. IDSIgnorePaths /var/db/locate.database
  23. IDSIgnorePaths /var/log
  24. # Paths which start with anything matching an entry in an UpdateIfUnmodified
  25. # statement will only be updated if the contents of the file have not been
  26. # modified by the user (unless changes are merged; see below).
  27. UpdateIfUnmodified /etc/ /var/ /root/ /.cshrc /.profile
  28. # When upgrading to a new FreeBSD release, files which match MergeChanges
  29. # will have any local changes merged into the version from the new release.
  30. MergeChanges /etc/
  31. ### Default configuration options:
  32. # Directory in which to store downloaded updates and temporary
  33. # files used by FreeBSD Update.
  34. # WorkDir /var/db/freebsd-update
  35. # Destination to send output of "freebsd-update cron" if an error
  36. # occurs or updates have been downloaded.
  37. # MailTo root
  38. # Is FreeBSD Update allowed to create new files?
  39. # AllowAdd yes
  40. # Is FreeBSD Update allowed to delete files?
  41. # AllowDelete yes
  42. # If the user has modified file ownership, permissions, or flags, should
  43. # FreeBSD Update retain this modified metadata when installing a new version
  44. # of that file?
  45. # KeepModifiedMetadata yes
  46. # When upgrading between releases, should the list of Components be
  47. # read strictly (StrictComponents yes) or merely as a list of components
  48. # which *might* be installed of which FreeBSD Update should figure out
  49. # which actually are installed and upgrade those (StrictComponents no)?
  50. # StrictComponents no
  51. # When installing a new kernel perform a backup of the old one first
  52. # so it is possible to boot the old kernel in case of problems.
  53. BackupKernel no
  54. # If BackupKernel is enabled, the backup kernel is saved to this
  55. # directory.
  56. # BackupKernelDir /boot/kernel.old
  57. # When backing up a kernel also back up debug symbol files?
  58. BackupKernelSymbolFiles no