git: 80003f7fe7 - main - handbook/virtualization: Fix freebsd-update syntax
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 27 Mar 2026 02:32:23 UTC
The branch main has been updated by ziaee:
URL: https://cgit.FreeBSD.org/doc/commit/?id=80003f7fe77af1313aa7ece6836f05da49db25f6
commit 80003f7fe77af1313aa7ece6836f05da49db25f6
Author: Kit Dallege <xaum.io@gmail.com>
AuthorDate: 2026-03-27 02:00:37 +0000
Commit: Alexander Ziaee <ziaee@FreeBSD.org>
CommitDate: 2026-03-27 02:31:46 +0000
handbook/virtualization: Fix freebsd-update syntax
Split freebsd-update fetch and install into two subcommands. If running
an EoL FreeBSD, running the two in one command can fail to perform the
install. This matches what was done elsewhere in the tree.
PR: 293517
Reported by: Graham Perrin
Signed-off-by: Kit Dallege <xaum.io@gmail.com>
Closes: https://github.com/freebsd/freebsd-doc/pull/632
---
documentation/content/en/books/handbook/virtualization/_index.adoc | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/documentation/content/en/books/handbook/virtualization/_index.adoc b/documentation/content/en/books/handbook/virtualization/_index.adoc
index bd9dc39007..b5822e01a2 100644
--- a/documentation/content/en/books/handbook/virtualization/_index.adoc
+++ b/documentation/content/en/books/handbook/virtualization/_index.adoc
@@ -735,7 +735,8 @@ Login as `root` and update the system as follows:
[source,shell]
....
-# freebsd-update fetch install
+# freebsd-update fetch
+# freebsd-update install
# reboot
....