aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Percival <cperciva@FreeBSD.org>2026-02-06 21:03:11 +0000
committerColin Percival <cperciva@FreeBSD.org>2026-02-06 21:05:26 +0000
commit18721be356043f6749a6e2470bc9f7351c450c6e (patch)
treed2e3d1d5742498d33815c89068b4b3eca7d94d62
parentbfd50a32ff26067552220c6f08e6025be3603962 (diff)
release: Turn off debugging in pkg(8)
Running `pkg -d` in pkg-stage.sh results in multiple GB of network traffic being written into the log files, which is less than helpful when it comes to tracking down build failures. Remove the -d flag. MFC after: 5 days X-MFC-note: The code in 15 has diverged from 14, but the flag is there, just in a different place.
-rwxr-xr-xrelease/scripts/pkg-stage.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/pkg-stage.sh b/release/scripts/pkg-stage.sh
index 00b83d9c51f0..5c4ec76150da 100755
--- a/release/scripts/pkg-stage.sh
+++ b/release/scripts/pkg-stage.sh
@@ -59,7 +59,7 @@ while getopts N opt; do
esac
done
-PKG_ARGS="-d --rootdir ${ROOTDIR}"
+PKG_ARGS="--rootdir ${ROOTDIR}"
PKG_ARGS="$PKG_ARGS -o INSTALL_AS_USER=1"
PKGCMD="/usr/sbin/pkg ${PKG_ARGS}"