1161748Scperciva# $FreeBSD$
2161748Scperciva
3161748Scperciva# Trusted keyprint.  Changing this is a Bad Idea unless you've received
4161748Scperciva# a PGP-signed email from <security-officer@FreeBSD.org> telling you to
5161748Scperciva# change it and explaining why.
6161748ScpercivaKeyPrint 800651ef4b4c71c27e60786d7b487188970f4b4169cc055784e21eb71d410cc5
7161748Scperciva
8161748Scperciva# Server or server pool from which to fetch updates.  You can change
9161748Scperciva# this to point at a specific server if you want, but in most cases
10161748Scperciva# using a "nearby" server won't provide a measurable improvement in
11161748Scperciva# performance.
12161748ScpercivaServerName update.FreeBSD.org
13161748Scperciva
14161748Scperciva# Components of the base system which should be kept updated.
15161748ScpercivaComponents src world kernel
16161748Scperciva
17161748Scperciva# Example for updating the userland and the kernel source code only:
18161748Scperciva# Components src/base src/sys world
19161748Scperciva
20161748Scperciva# Paths which start with anything matching an entry in an IgnorePaths
21161748Scperciva# statement will be ignored.
22161748ScpercivaIgnorePaths
23161748Scperciva
24181145Scperciva# Paths which start with anything matching an entry in an IDSIgnorePaths
25181145Scperciva# statement will be ignored by "freebsd-update IDS".
26181145ScpercivaIDSIgnorePaths /usr/share/man/cat
27181427ScpercivaIDSIgnorePaths /usr/share/man/whatis
28181427ScpercivaIDSIgnorePaths /var/db/locate.database
29181427ScpercivaIDSIgnorePaths /var/log
30181145Scperciva
31161748Scperciva# Paths which start with anything matching an entry in an UpdateIfUnmodified
32161748Scperciva# statement will only be updated if the contents of the file have not been
33173564Scperciva# modified by the user (unless changes are merged; see below).
34174057ScpercivaUpdateIfUnmodified /etc/ /var/ /root/ /.cshrc /.profile
35161748Scperciva
36173564Scperciva# When upgrading to a new FreeBSD release, files which match MergeChanges
37173564Scperciva# will have any local changes merged into the version from the new release.
38258121SglebiusMergeChanges /etc/ /boot/device.hints
39173564Scperciva
40161748Scperciva### Default configuration options:
41161748Scperciva
42161748Scperciva# Directory in which to store downloaded updates and temporary
43161748Scperciva# files used by FreeBSD Update.
44161748Scperciva# WorkDir /var/db/freebsd-update
45161748Scperciva
46161748Scperciva# Destination to send output of "freebsd-update cron" if an error
47161748Scperciva# occurs or updates have been downloaded.
48161748Scperciva# MailTo root
49161748Scperciva
50161748Scperciva# Is FreeBSD Update allowed to create new files?
51161748Scperciva# AllowAdd yes
52161748Scperciva
53161748Scperciva# Is FreeBSD Update allowed to delete files?
54161748Scperciva# AllowDelete yes
55161748Scperciva
56161748Scperciva# If the user has modified file ownership, permissions, or flags, should
57161748Scperciva# FreeBSD Update retain this modified metadata when installing a new version
58161748Scperciva# of that file?
59161748Scperciva# KeepModifiedMetadata yes
60173564Scperciva
61173564Scperciva# When upgrading between releases, should the list of Components be
62173564Scperciva# read strictly (StrictComponents yes) or merely as a list of components
63173564Scperciva# which *might* be installed of which FreeBSD Update should figure out
64173564Scperciva# which actually are installed and upgrade those (StrictComponents no)?
65173564Scperciva# StrictComponents no
66196392Ssimon
67196392Ssimon# When installing a new kernel perform a backup of the old one first
68196392Ssimon# so it is possible to boot the old kernel in case of problems.
69196392Ssimon# BackupKernel yes
70196392Ssimon
71196392Ssimon# If BackupKernel is enabled, the backup kernel is saved to this
72196392Ssimon# directory.
73196392Ssimon# BackupKernelDir /boot/kernel.old
74196392Ssimon
75196392Ssimon# When backing up a kernel also back up debug symbol files?
76196392Ssimon# BackupKernelSymbolFiles no
77