View | Details | Raw Unified | Return to bug 239997
Collapse All | Expand All

(-)usr.sbin/freebsd-update/freebsd-update.8 (-1 / +8 lines)
Lines 25-31 Link Here
25
.\"
25
.\"
26
.\" $FreeBSD$
26
.\" $FreeBSD$
27
.\"
27
.\"
28
.Dd June 14, 2017
28
.Dd August 20, 2019
29
.Dt FREEBSD-UPDATE 8
29
.Dt FREEBSD-UPDATE 8
30
.Os
30
.Os
31
.Sh NAME
31
.Sh NAME
Lines 183-188 Link Here
183
If you intend to use this command for intrusion-detection
183
If you intend to use this command for intrusion-detection
184
purposes, make sure you boot from a secure disk (e.g., a CD).
184
purposes, make sure you boot from a secure disk (e.g., a CD).
185
.El
185
.El
186
.Sh ENVIRONMENT
187
When
188
.Ev SKIPISFETCHEDCHECK
189
is set to a non-empty value,
190
.Nm
191
will not check if a fetch phase happened in case no
192
updates are available to install.
186
.Sh FILES
193
.Sh FILES
187
.Bl -tag -width "/etc/freebsd-update.conf"
194
.Bl -tag -width "/etc/freebsd-update.conf"
188
.It Pa /etc/freebsd-update.conf
195
.It Pa /etc/freebsd-update.conf
(-)usr.sbin/freebsd-update/freebsd-update.sh (-1 / +1 lines)
Lines 817-823 Link Here
817
	# Check that we have updates ready to install
817
	# Check that we have updates ready to install
818
	if ! [ -L ${BDHASH}-install ]; then
818
	if ! [ -L ${BDHASH}-install ]; then
819
		echo "No updates are available to install."
819
		echo "No updates are available to install."
820
		if [ $ISFETCHED -eq 0 ]; then
820
		if [ $ISFETCHED -eq 0 ] && [ -z "$SKIPISFETCHEDCHECK" ]; then
821
			echo "Run '$0 fetch' first."
821
			echo "Run '$0 fetch' first."
822
			exit 1
822
			exit 1
823
		fi
823
		fi

Return to bug 239997