git: 7edb49a1152e - main - freebsd-tips: freebsd-update fetch, then install
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 02 Feb 2024 15:27:38 UTC
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=7edb49a1152eb7c70a0806fabbe7ce3ff0d810a4 commit 7edb49a1152eb7c70a0806fabbe7ce3ff0d810a4 Author: Graham Perrin <grahamperrin@gmail.com> AuthorDate: 2024-02-02 15:25:41 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2024-02-02 15:25:44 +0000 freebsd-tips: freebsd-update fetch, then install In end of life (EOL) warning cases: freebsd-update fetch install (the two commands, combined) may fetch and patch, but not install. Instead: run the two consecutively. Consistent with installation information in /releases/ areas and with accepted https://reviews.freebsd.org/D42722 Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/1096 --- usr.bin/fortune/datfiles/freebsd-tips | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/usr.bin/fortune/datfiles/freebsd-tips b/usr.bin/fortune/datfiles/freebsd-tips index aed66f2295e2..028a9e9b1430 100644 --- a/usr.bin/fortune/datfiles/freebsd-tips +++ b/usr.bin/fortune/datfiles/freebsd-tips @@ -533,9 +533,10 @@ Run "etcupdate extract" once when your sources match your running system, then r Do you want to do a binary upgrade of your running FreeBSD installation? Use freebsd-update(8). To install updates and patches for the running branch use -# freebsd-update fetch install +# freebsd-update fetch +# freebsd-update install -To upgrade to a newer release use +Then, to upgrade to a newer release use # freebsd-update upgrade -r ${name_of_release} -- Lars Engels <lme@FreeBSD.org>