freebsd-update.conf revision 173564
1161748Scperciva# $FreeBSD: head/etc/freebsd-update.conf 173564 2007-11-12 04:47:57Z cperciva $
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
24161748Scperciva# Paths which start with anything matching an entry in an UpdateIfUnmodified
25161748Scperciva# statement will only be updated if the contents of the file have not been
26173564Scperciva# modified by the user (unless changes are merged; see below).
27161748ScpercivaUpdateIfUnmodified /etc/ /var/
28161748Scperciva
29173564Scperciva# When upgrading to a new FreeBSD release, files which match MergeChanges
30173564Scperciva# will have any local changes merged into the version from the new release.
31173564ScpercivaMergeChanges /etc/ /var/named/etc/
32173564Scperciva
33161748Scperciva### Default configuration options:
34161748Scperciva
35161748Scperciva# Directory in which to store downloaded updates and temporary
36161748Scperciva# files used by FreeBSD Update.
37161748Scperciva# WorkDir /var/db/freebsd-update
38161748Scperciva
39161748Scperciva# Destination to send output of "freebsd-update cron" if an error
40161748Scperciva# occurs or updates have been downloaded.
41161748Scperciva# MailTo root
42161748Scperciva
43161748Scperciva# Is FreeBSD Update allowed to create new files?
44161748Scperciva# AllowAdd yes
45161748Scperciva
46161748Scperciva# Is FreeBSD Update allowed to delete files?
47161748Scperciva# AllowDelete yes
48161748Scperciva
49161748Scperciva# If the user has modified file ownership, permissions, or flags, should
50161748Scperciva# FreeBSD Update retain this modified metadata when installing a new version
51161748Scperciva# of that file?
52161748Scperciva# KeepModifiedMetadata yes
53173564Scperciva
54173564Scperciva# When upgrading between releases, should the list of Components be
55173564Scperciva# read strictly (StrictComponents yes) or merely as a list of components
56173564Scperciva# which *might* be installed of which FreeBSD Update should figure out
57173564Scperciva# which actually are installed and upgrade those (StrictComponents no)?
58173564Scperciva# StrictComponents no
59