svn commit: r272424 - stable/10/usr.sbin/bsdinstall/scripts

Allan Jude allanjude at FreeBSD.org
Thu Oct 2 17:19:33 UTC 2014


Author: allanjude (doc committer)
Date: Thu Oct  2 17:19:32 2014
New Revision: 272424
URL: https://svnweb.freebsd.org/changeset/base/272424

Log:
  MFC r272274:
  Change the /var dataset in the default ZFS layout to have the
  ZFS property canmount=off, making /var/db/pkg part of the / dataset, so
  installed package files are consistent with the package database when
  using ZFS boot environments (beadm).
  
  PR:		193971
  Reviewed by:	Shawn Webb, bcr
  Approved by:	re (gjb), jmg
  Relnotes:	yes
  Sponsored by:	ScaleEngine Inc.

Modified:
  stable/10/usr.sbin/bsdinstall/scripts/zfsboot
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.sbin/bsdinstall/scripts/zfsboot
==============================================================================
--- stable/10/usr.sbin/bsdinstall/scripts/zfsboot	Thu Oct  2 16:57:44 2014	(r272423)
+++ stable/10/usr.sbin/bsdinstall/scripts/zfsboot	Thu Oct  2 17:19:32 2014	(r272424)
@@ -156,7 +156,7 @@ f_isset ZFSBOOT_DATASETS || ZFSBOOT_DATA
 	/usr/src
 
 	# Create /var and friends
-	/var		mountpoint=/var
+	/var		mountpoint=/var,canmount=off
 	/var/crash	exec=off,setuid=off
 	/var/log	exec=off,setuid=off
 	/var/mail	atime=on


More information about the svn-src-all mailing list