diff options
author | gjb <gjb@FreeBSD.org> | 2015-09-29 15:30:27 +0000 |
---|---|---|
committer | gjb <gjb@FreeBSD.org> | 2015-09-29 15:30:27 +0000 |
commit | 00e9f99f769be6937cece44e2a45afe2835ffa41 (patch) | |
tree | feb8349ad1b61135bb7c1735a9fa655fce684526 | |
parent | e0c05843129a88ff99e7da8b339cfcb126bd9cb1 (diff) | |
download | FreeBSD-src-00e9f99f769be6937cece44e2a45afe2835ffa41.zip FreeBSD-src-00e9f99f769be6937cece44e2a45afe2835ffa41.tar.gz |
In vm_copy_base(), turn off SU+J on the resultant filesystem,
leaving only SU enabled.
Discussed with: kib (a few weeks ago)
MFC after: 3 days
Sponsored by: The FreeBSD Foundation
-rw-r--r-- | release/tools/vmimage.subr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release/tools/vmimage.subr b/release/tools/vmimage.subr index 262e245b..b5a8bf7 100644 --- a/release/tools/vmimage.subr +++ b/release/tools/vmimage.subr @@ -108,7 +108,7 @@ vm_copy_base() { umount_loop /dev/${mdnew} rmdir ${DESTDIR}/new - tunefs -j enable /dev/${mdnew} + tunefs -n enable /dev/${mdnew} mdconfig -d -u ${mdnew} mv ${VMBASE}.tmp ${VMBASE} } |