aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2022-10-14 05:22:09 +0000
committerKyle Evans <kevans@FreeBSD.org>2022-10-24 16:01:01 +0000
commita7766860e0fe7e0c0b63e80c9e961346b4f86391 (patch)
tree30ab1f912f6473b65b141a57b53243308d759d11
parent341417ac743b7b12494cfcf0fa8b87d51d823fe2 (diff)
downloadsrc-a7766860e0fe7e0c0b63e80c9e961346b4f86391.tar.gz
src-a7766860e0fe7e0c0b63e80c9e961346b4f86391.zip
bsdinstall: use the correct DISTDIR for fetching local distfiles
fetchmissingdists naturally sets BSDINSTALL_DISTDIR to a directory in the new filesystem that it can write fetched distfiles to. As a result, BSDINSTALL_DISTSITE was incorrectly set to the scratch space on /mnt for the call to distfetch when grabbing local distfiles, and it would subsequently fail. Switch to using the copy of BSDINSTALL_DISTDIR that we stashed off coming into fetchmissingdists; this one is in-fact set to the path where the local distfiles are stored. Patch suggested by jrtc27. Reported and tested by: Daniel O'Connor <darius dons net au> (cherry picked from commit 12b92f3ed82aa71c0eba246ce3053ef225724570)
-rw-r--r--usr.sbin/bsdinstall/scripts/fetchmissingdists2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bsdinstall/scripts/fetchmissingdists b/usr.sbin/bsdinstall/scripts/fetchmissingdists
index 768217e2fb8c..d96ddabb2c25 100644
--- a/usr.sbin/bsdinstall/scripts/fetchmissingdists
+++ b/usr.sbin/bsdinstall/scripts/fetchmissingdists
@@ -85,7 +85,7 @@ fi
if [ ! -z "$LOCAL_DISTRIBUTIONS" ]; then
# Copy local stuff first
env DISTRIBUTIONS="$LOCAL_DISTRIBUTIONS" \
- BSDINSTALL_DISTSITE="file://$BSDINSTALL_DISTDIR" \
+ BSDINSTALL_DISTSITE="file://$BSDINSTALL_DISTDIR_ORIG" \
bsdinstall distfetch || \
error "Failed to fetch distribution from local media"
fi