This seems to be the commit
commit 636d377264f51e3dd33bd7f33ebf03e2e148d40d
Author: Kyle Evans <kev...@FreeBSD.org>
Date: Tue Dec 10 19:19:08 2024 -0600
release: vmimage: setup the default BE properly
All of the BE datasets need to be set canmount=noauto so that creating
a new BE and switching to it can actually work. With the current
setup,
the zfs rc script will mount the `default` BE over whichever new BE is
activated once it runs.
Reported by: andrew
Reviewed by: andrew, re (cperciva), imp, markj
Differential Revision:
https://reviews.freebsd.org/D48017
My script was failing because
zpool import -f -R ${TARGETMOUNT} ${BASEPOOLNAME} ${NAME}
assumed / was mounted when I did the import. I have worked around it
for now
---Mike