From b4695c137e66a397bcd3af482f6224f925beaf13 Mon Sep 17 00:00:00 2001 From: Noah Stapp Date: Tue, 19 Nov 2024 10:58:10 -0500 Subject: [PATCH] Fix bootstrap AUTH + SSL --- .evergreen/scripts/bootstrap-mongo-orchestration.sh | 4 ++-- .evergreen/scripts/configure-env.sh | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.evergreen/scripts/bootstrap-mongo-orchestration.sh b/.evergreen/scripts/bootstrap-mongo-orchestration.sh index 20e2b82086..1d2b145de8 100644 --- a/.evergreen/scripts/bootstrap-mongo-orchestration.sh +++ b/.evergreen/scripts/bootstrap-mongo-orchestration.sh @@ -35,8 +35,8 @@ fi MONGODB_VERSION=${VERSION} \ TOPOLOGY=${TOPOLOGY} \ - AUTH=${AUTH} \ - SSL=${SSL} \ + AUTH=${AUTH:-noauth} \ + SSL=${SSL:-nossl} \ STORAGE_ENGINE=${STORAGE_ENGINE:-} \ DISABLE_TEST_COMMANDS=${DISABLE_TEST_COMMANDS:-} \ ORCHESTRATION_FILE=${ORCHESTRATION_FILE:-} \ diff --git a/.evergreen/scripts/configure-env.sh b/.evergreen/scripts/configure-env.sh index d2343aac09..0a35cd92e3 100644 --- a/.evergreen/scripts/configure-env.sh +++ b/.evergreen/scripts/configure-env.sh @@ -52,9 +52,6 @@ export SKIP_HATCH="${SKIP_HATCH:-}" export skip_crypt_shared="${skip_crypt_shared:-}" export STORAGE_ENGINE="${STORAGE_ENGINE:-}" export REQUIRE_API_VERSION="${REQUIRE_API_VERSION:-}" -export AUTH="${AUTH:-noauth}" -export SSL="${SSL:-nossl}" - export TMPDIR="$MONGO_ORCHESTRATION_HOME/db" export PATH="$MONGODB_BINARIES:$PATH"