Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 6 Jun 2019 12:44:43 +0000 (UTC)
From:      Glen Barber <gjb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r348736 - stable/11/release/tools
Message-ID:  <201906061244.x56Cih3N061488@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gjb
Date: Thu Jun  6 12:44:43 2019
New Revision: 348736
URL: https://svnweb.freebsd.org/changeset/base/348736

Log:
  MFC r348439:
   Increase the size of the Vagrant default image size, as the 3GB
   size is too small to bootstrap the firstboot_pkgs list.
  
   While here, add the growfs(8) startup script to /etc/rc.conf,
   as Vagrant images can be resized by modifying the Vagrantfile.
  
  Approved by:	re (kib)
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/11/release/tools/vagrant.conf
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/release/tools/vagrant.conf
==============================================================================
--- stable/11/release/tools/vagrant.conf	Thu Jun  6 11:42:26 2019	(r348735)
+++ stable/11/release/tools/vagrant.conf	Thu Jun  6 12:44:43 2019	(r348736)
@@ -3,12 +3,15 @@
 # $FreeBSD$
 #
 
+# The default of 3GB is too small for Vagrant, so override the size here.
+export VMSIZE=8G
+
 # Packages to install into the image we're creating.  This is a deliberately
 # minimalist set, providing only the packages necessary to bootstrap.
 export VM_EXTRA_PACKAGES="firstboot-freebsd-update firstboot-pkgs"
 
 # Set to a list of third-party software to enable in rc.conf(5).
-export VM_RC_LIST="firstboot_freebsd_update firstboot_pkgs"
+export VM_RC_LIST="firstboot_freebsd_update firstboot_pkgs growfs"
 
 vagrant_common () {
 	# The firstboot_pkgs rc.d script will download the repository



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906061244.x56Cih3N061488>