commit: 5361ab3ff33bc4119db91399511104a9bb5eefa5
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 11 07:59:50 2026 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Wed Feb 11 07:59:50 2026 +0000
URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=5361ab3f
scripts/bootstrap-prefix: run emerge-webrsync with --no-pgp-verify
At this early stage we have no gnupg installed. Perhaps we could, but
then we still don't have keys to verify the Prefix snapshots. So, while
everything sofar was already largely unchecked, just keep plunging on.
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
scripts/bootstrap-prefix.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index 3c849933a6..e167aa719b 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -2590,9 +2590,9 @@ bootstrap_stage3() {
if [[ ${OFFLINE_MODE} ]]; then
# --keep used ${DISTDIR}, which make it easier to download a
# snapshot beforehand
- emerge-webrsync --keep || return 1
+ emerge-webrsync --keep --no-pgp-verify || return 1
else
- emerge --color n --sync || emerge-webrsync || return 1
+ emerge --color n --sync || emerge-webrsync --no-pgp-verify ||
return 1
fi
# Avoid installing git or encryption just for fun while completing
@system