git: e79edfaf68c5 - releng/13.2 - freebsd-update: create deep BEs by default
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 08 Nov 2023 01:00:36 UTC
The branch releng/13.2 has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=e79edfaf68c542c8545670e911ae83ca0e3493b5
commit e79edfaf68c542c8545670e911ae83ca0e3493b5
Author: Kyle Evans <kevans@FreeBSD.org>
AuthorDate: 2023-10-12 02:51:07 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2023-11-08 00:59:45 +0000
freebsd-update: create deep BEs by default
The -r flag to bectl needs to go away, and we need to just do the right
thing. In the meantime, we can apply an -r in freebsd-update as a
minimal fix to stop creating partial backups in these (non-default) deep
BE setups.
PR: 267535
(cherry picked from commit 989c5f6da99081b1f2b76ec09e91078e531e1250)
(cherry picked from commit 80f747781f125576de40ab8b3d8d70b351ef0518)
Approved by: so
Security: FreeBSD-EN-23:13
---
usr.sbin/freebsd-update/freebsd-update.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/usr.sbin/freebsd-update/freebsd-update.sh b/usr.sbin/freebsd-update/freebsd-update.sh
index 0c4053715b70..42cd2087a3ba 100644
--- a/usr.sbin/freebsd-update/freebsd-update.sh
+++ b/usr.sbin/freebsd-update/freebsd-update.sh
@@ -918,7 +918,7 @@ install_create_be () {
echo -n "Creating snapshot of existing boot environment... "
VERSION=`freebsd-version -ku | sort -V | tail -n 1`
TIMESTAMP=`date +"%Y-%m-%d_%H%M%S"`
- bectl create ${VERSION}_${TIMESTAMP}
+ bectl create -r ${VERSION}_${TIMESTAMP}
if [ $? -eq 0 ]; then
echo "done.";
else