svn commit: r318963 - in stable: 10/release/tools 11/release/tools

Glen Barber gjb at FreeBSD.org
Fri May 26 19:02:48 UTC 2017


Author: gjb
Date: Fri May 26 19:02:46 2017
New Revision: 318963
URL: https://svnweb.freebsd.org/changeset/base/318963

Log:
  MFC r314935 (thompsa):
   Change ec2.conf to use the pkg tool from a chroot rather than trying
   to bootstrap it and fail from the livecd readonly filesystem.
  
  Sponsored by:	The FreeBSD Foundation

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

Changes in other areas also in this revision:
Modified:
  stable/10/release/tools/ec2.conf
Directory Properties:
  stable/10/   (props changed)

Modified: stable/11/release/tools/ec2.conf
==============================================================================
--- stable/11/release/tools/ec2.conf	Fri May 26 17:44:47 2017	(r318962)
+++ stable/11/release/tools/ec2.conf	Fri May 26 19:02:46 2017	(r318963)
@@ -32,7 +32,8 @@ vm_extra_pre_umount() {
 	# catalogue and install or update pkg when the instance first
 	# launches, so these files would just be replaced anyway; removing
 	# them from the image allows it to boot faster.
-	env ASSUME_ALWAYS_YES=yes pkg -c ${DESTDIR} delete -f -y pkg
+	chroot ${DESTDIR} env ASSUME_ALWAYS_YES=yes \
+		/usr/sbin/pkg delete -f -y pkg
 	rm ${DESTDIR}/var/db/pkg/repo-*.sqlite
 
 	# The size of the EC2 root disk can be configured at instance launch


More information about the svn-src-all mailing list