]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - usr.sbin/freebsd-update/freebsd-update.8
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / usr.sbin / freebsd-update / freebsd-update.8
1 .\"-
2 .\" Copyright 2006, 2007 Colin Percival
3 .\" All rights reserved
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted providing that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\"
14 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16 .\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
18 .\" DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
22 .\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
23 .\" IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
24 .\" POSSIBILITY OF SUCH DAMAGE.
25 .\"
26 .\" $FreeBSD$
27 .\"
28 .Dd November 11, 2007
29 .Dt FREEBSD-UPDATE 8
30 .Os FreeBSD
31 .Sh NAME
32 .Nm freebsd-update
33 .Nd fetch and install binary updates to FreeBSD
34 .Sh SYNOPSIS
35 .Nm
36 .Op Fl b Ar basedir
37 .Op Fl d Ar workdir
38 .Op Fl f Ar conffile
39 .Op Fl k Ar KEY
40 .Op Fl r Ar newrelease
41 .Op Fl s Ar server
42 .Op Fl t Ar address
43 .Cm command ...
44 .Sh DESCRIPTION
45 The
46 .Nm
47 tool is used to fetch, install, and rollback binary
48 updates to the FreeBSD base system.
49 Note that updates are only available if they are being built for the
50 FreeBSD release and architecture being used; in particular, the
51 .Fx
52 Security Team only builds updates for releases shipped in binary form 
53 by the
54 .Fx
55 Release Engineering Team, e.g.,
56 .Fx
57 6.1-RELEASE and
58 .Fx
59 6.2-RC1, but not
60 .Fx
61 6.2-STABLE or
62 .Fx
63 7.0-CURRENT.
64 .Sh OPTIONS
65 The following options are supported
66 .Bl -tag -width "-f conffile"
67 .It Fl b Ar basedir
68 Operate on a system mounted at
69 .Ar basedir .
70 (default:
71 .Pa / ,
72 or as given in the configuration file.)
73 .It Fl d Ar workdir
74 Store working files in
75 .Ar workdir .
76 (default:
77 .Pa /var/db/freebsd-update/ ,
78 or as given in the configuration file.)
79 .It Fl f Ar conffile
80 Read configuration options from
81 .Ar conffile .
82 (default:
83 .Pa /etc/freebsd-update.conf )
84 .It Fl k Ar KEY
85 Trust an RSA key with SHA256 of
86 .Ar KEY .
87 (default: read value from configuration file.)
88 .It Fl r Ar newrelease
89 Specify the new release to which
90 .Nm
91 should upgrade (upgrade command only).
92 .It Fl s Ar server
93 Fetch files from the specified server or server pool.
94 (default: read value from configuration file.)
95 .It Fl t Ar address
96 Mail output of
97 .Cm cron
98 command, if any, to
99 .Ar address .
100 (default: root, or as given in the configuration file.)
101 .El
102 .Sh COMMANDS
103 The
104 .Cm command
105 can be any one of the following:
106 .Pp
107 .Bl -tag -width "-f conffile"
108 .It Cm fetch
109 Based on the currently installed world and the configuration
110 options set, fetch all available binary updates.
111 .It Cm cron
112 Sleep a random amount of time between 1 and 3600 seconds,
113 then download updates as if the
114 .Cm fetch
115 command was used.
116 If updates are downloaded, an email will be sent
117 (to root or a different address if specified via the
118 .Fl t
119 option or in the configuration file).
120 As the name suggests, this command is designed for running
121 from
122 .Xr cron 8 ;
123 the random delay serves to minimize the probability that
124 a large number of machines will simultaneously attempt to
125 fetch updates.
126 .It Cm upgrade
127 Fetch files necessary for upgrading to a new release.
128 Before using this command, make sure that you read the
129 announcement and release notes for the new release in
130 case there are any special steps needed for upgrading.
131 .It Cm install
132 Install the most recently fetched updates or upgrade.
133 .It Cm rollback
134 Uninstall the most recently installed updates.
135 .It Cm IDS
136 Compare the system against a "known good" index of the
137 installed release.
138 .El
139 .Sh TIPS
140 .Bl -bullet
141 .It
142 If your clock is set to local time, adding the line
143 .Pp
144 .Dl 0 3 * * * root /usr/sbin/freebsd-update cron
145 .Pp
146 to /etc/crontab will check for updates every night.
147 If your clock is set to UTC, please pick a random time
148 other than 3AM, to avoid overly imposing an uneven load
149 on the server(s) hosting the updates.
150 .It
151 In spite of its name,
152 .Cm
153 IDS should not be relied upon as an "Intrusion Detection
154 System", since if the system has been tampered with
155 it cannot be trusted to operate correctly.
156 If you intend to use this command for intrusion-detection
157 purposes, make sure you boot from a secure disk (e.g., a CD).
158 .El
159 .Sh FILES
160 .Bl -tag -width "/etc/freebsd-update.conf"
161 .It /etc/freebsd-update.conf
162 Default location of the
163 .Nm
164 configuration file.
165 .It /var/db/freebsd-update/
166 Default location where
167 .Nm
168 stores temporary files and downloaded updates.
169 .El
170 .Sh SEE ALSO
171 .Xr freebsd-update.conf 5
172 .Sh AUTHORS
173 .An Colin Percival Aq cperciva@FreeBSD.org