freebsd-update.conf revision 196392
150276Speter# $FreeBSD: head/etc/freebsd-update.conf 196392 2009-08-19 20:47:31Z simon $
2184989Srafan
350276Speter# Trusted keyprint.  Changing this is a Bad Idea unless you've received
450276Speter# a PGP-signed email from <security-officer@FreeBSD.org> telling you to
550276Speter# change it and explaining why.
650276SpeterKeyPrint 800651ef4b4c71c27e60786d7b487188970f4b4169cc055784e21eb71d410cc5
750276Speter
850276Speter# Server or server pool from which to fetch updates.  You can change
950276Speter# this to point at a specific server if you want, but in most cases
1050276Speter# using a "nearby" server won't provide a measurable improvement in
1150276Speter# performance.
1250276SpeterServerName update.FreeBSD.org
1350276Speter
1450276Speter# Components of the base system which should be kept updated.
1550276SpeterComponents src world kernel
1650276Speter
1750276Speter# Example for updating the userland and the kernel source code only:
1850276Speter# Components src/base src/sys world
1950276Speter
2050276Speter# Paths which start with anything matching an entry in an IgnorePaths
2150276Speter# statement will be ignored.
2250276SpeterIgnorePaths
2350276Speter
2450276Speter# Paths which start with anything matching an entry in an IDSIgnorePaths
2550276Speter# statement will be ignored by "freebsd-update IDS".
2650276SpeterIDSIgnorePaths /usr/share/man/cat
2750276SpeterIDSIgnorePaths /usr/share/man/whatis
2850276SpeterIDSIgnorePaths /var/db/locate.database
2950276SpeterIDSIgnorePaths /var/log
30166124Srafan
3150276Speter# Paths which start with anything matching an entry in an UpdateIfUnmodified
3250276Speter# statement will only be updated if the contents of the file have not been
3350276Speter# modified by the user (unless changes are merged; see below).
3450276SpeterUpdateIfUnmodified /etc/ /var/ /root/ /.cshrc /.profile
35184989Srafan
3650276Speter# When upgrading to a new FreeBSD release, files which match MergeChanges
3750276Speter# will have any local changes merged into the version from the new release.
38166124SrafanMergeChanges /etc/ /var/named/etc/ /boot/device.hints
39166124Srafan
40166124Srafan### Default configuration options:
41166124Srafan
42166124Srafan# Directory in which to store downloaded updates and temporary
43166124Srafan# files used by FreeBSD Update.
44166124Srafan# WorkDir /var/db/freebsd-update
45166124Srafan
46166124Srafan# Destination to send output of "freebsd-update cron" if an error
47166124Srafan# occurs or updates have been downloaded.
48166124Srafan# MailTo root
49166124Srafan
50166124Srafan# Is FreeBSD Update allowed to create new files?
51166124Srafan# AllowAdd yes
52166124Srafan
53166124Srafan# Is FreeBSD Update allowed to delete files?
54166124Srafan# AllowDelete yes
55166124Srafan
56166124Srafan# If the user has modified file ownership, permissions, or flags, should
57166124Srafan# FreeBSD Update retain this modified metadata when installing a new version
58166124Srafan# of that file?
59166124Srafan# KeepModifiedMetadata yes
60166124Srafan
61166124Srafan# When upgrading between releases, should the list of Components be
6250276Speter# read strictly (StrictComponents yes) or merely as a list of components
6350276Speter# which *might* be installed of which FreeBSD Update should figure out
6476726Speter# which actually are installed and upgrade those (StrictComponents no)?
6550276Speter# StrictComponents no
6650276Speter
6750276Speter# When installing a new kernel perform a backup of the old one first
6850276Speter# so it is possible to boot the old kernel in case of problems.
6950276Speter# BackupKernel yes
7050276Speter
7150276Speter# If BackupKernel is enabled, the backup kernel is saved to this
7250276Speter# directory.
7350276Speter# BackupKernelDir /boot/kernel.old
7450276Speter
7550276Speter# When backing up a kernel also back up debug symbol files?
7650276Speter# BackupKernelSymbolFiles no
7750276Speter