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