Invoke the growfs rc script for each boot on GCE.

PR:		230275
Submitted by:	gustavo.scalet@collabora.com
MFC after:	3 days
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Glen Barber 2018-08-09 23:43:10 +00:00
parent 0366e18e5a
commit 6ac4304a0f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=337556

View File

@ -5,11 +5,10 @@
# Set to a list of packages to install.
export VM_EXTRA_PACKAGES="firstboot-freebsd-update firstboot-pkgs \
google-cloud-sdk panicmail sudo firstboot-growfs \
sysutils/py-google-compute-engine"
google-cloud-sdk panicmail sudo sysutils/py-google-compute-engine"
# Set to a list of third-party software to enable in rc.conf(5).
export VM_RC_LIST="ntpd sshd firstboot_growfs \
export VM_RC_LIST="ntpd sshd growfs\
firstboot_pkgs firstboot_freebsd_update google_startup \
google_accounts_daemon google_clock_skew_daemon \
google_instance_setup google_network_daemon"
@ -21,6 +20,10 @@ vm_extra_install_base() {
}
vm_extra_pre_umount() {
# Enable growfs on every boot, not only the first, as as instance's disk can
# be enlarged post-creation
sed -i -e '/KEYWORD: firstboot/d' /etc/rc.d/growfs
cat << EOF >> ${DESTDIR}/etc/rc.conf
dumpdev="AUTO"
ifconfig_DEFAULT="SYNCDHCP mtu 1460"