summaryrefslogtreecommitdiff
path: root/release
diff options
context:
space:
mode:
authorColin Percival <cperciva@FreeBSD.org>2025-11-15 17:19:50 -0800
committerColin Percival <cperciva@FreeBSD.org>2025-11-15 17:19:50 -0800
commit78fa6965e91ec52c24f602250a9d7ec465b9a6ba (patch)
tree641b84504cfbcd47d67da540f845250d15021a9a /release
parent509dfd369046ee45b724d119c9eed43228fbb894 (diff)
vmimage.subr: Don't log missing files from pkgs
When installing "extra" packages (aka those built from the ports tree), we record everything being installed in METALOG.pkg; the contents of that file is appended to METALOG before we generate the filesystem. There are two cases when files recorded in METALOG.pkg will no longer exist by the time we create the final disk image: 1. If a pkg bug results in false dependencies being installed which are later removed by "pkg autoremove", and 2. If the pkg we build and install from /usr/ports is older than the pkg on pkg.freebsd.org, and pkg gets upgraded automatically as part of installing extra packages. The ultimate issue in both cases is that there's no mechanism for removing entries from METALOG when we run 'pkg delete'. Address this build breakage by checking, line by line, if filesystem objects mentioned in METALOG.pkg exist before appending them to METALOG. Fixes: 6a13aeac3c1f ("vmimage.subr: pkg autoremove after pkg install") MFC after: immediately (needed for 15.0-RC1)
Diffstat (limited to 'release')
-rw-r--r--release/tools/vmimage.subr9
1 files changed, 8 insertions, 1 deletions
diff --git a/release/tools/vmimage.subr b/release/tools/vmimage.subr
index 7035b107ae22..03d92850f2a3 100644
--- a/release/tools/vmimage.subr
+++ b/release/tools/vmimage.subr
@@ -292,8 +292,15 @@ vm_extra_pkg_rmcache() {
buildfs() {
local md tmppool
+ # Copy entries from METALOG.pkg into METALOG, but first check to
+ # make sure that filesystem objects still exist; some things may
+ # have been logged which no longer exist if a package was removed.
if [ -f ${DESTDIR}/METALOG.pkg ]; then
- cat ${DESTDIR}/METALOG.pkg >> ${DESTDIR}/METALOG
+ while read F REST; do
+ if [ -e ${DESTDIR}/${F} ]; then
+ echo "${F} ${REST}" >> ${DESTDIR}/METALOG
+ fi
+ done < ${DESTDIR}/METALOG.pkg
fi
if [ -n "${NO_ROOT}" ]; then