aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2023-10-12 02:51:07 +0000
committerKyle Evans <kevans@FreeBSD.org>2023-10-24 00:04:42 +0000
commitc1c0873c9d3f6c05168303d0b95f9363c1e6c371 (patch)
tree367b1549b7d81622df6e239c0eb4e8fc5b549684
parent0ceaf5d4628210226d0bafc2650b494a07ca9aaf (diff)
downloadsrc-c1c0873c9d3f6c05168303d0b95f9363c1e6c371.tar.gz
src-c1c0873c9d3f6c05168303d0b95f9363c1e6c371.zip
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)
-rw-r--r--usr.sbin/freebsd-update/freebsd-update.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/freebsd-update/freebsd-update.sh b/usr.sbin/freebsd-update/freebsd-update.sh
index 5a523775dbbb..f89ee032e1f8 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