Skip to content

Commit 7617ac6

Browse files
committed
Fix unbound variables
1 parent 707452b commit 7617ac6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.evergreen/scripts/bootstrap-mongo-orchestration.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ if [ -n "${skip_crypt_shared}" ]; then
3333
export SKIP_CRYPT_SHARED=1
3434
fi
3535

36-
MONGODB_VERSION=${VERSION} \
37-
TOPOLOGY=${TOPOLOGY} \
38-
AUTH=${AUTH} \
39-
SSL=${SSL} \
40-
STORAGE_ENGINE=${STORAGE_ENGINE} \
41-
DISABLE_TEST_COMMANDS=${DISABLE_TEST_COMMANDS} \
36+
MONGODB_VERSION=${VERSION:-} \
37+
TOPOLOGY=${TOPOLOGY:-} \
38+
AUTH=${AUTH:-noauth} \
39+
SSL=${SSL:-nossl} \
40+
STORAGE_ENGINE=${STORAGE_ENGINE:-} \
41+
DISABLE_TEST_COMMANDS=${DISABLE_TEST_COMMANDS:-} \
4242
ORCHESTRATION_FILE=${ORCHESTRATION_FILE:-} \
43-
REQUIRE_API_VERSION=${REQUIRE_API_VERSION} \
44-
LOAD_BALANCER=${LOAD_BALANCER} \
43+
REQUIRE_API_VERSION=${REQUIRE_API_VERSION:-} \
44+
LOAD_BALANCER=${LOAD_BALANCER:-} \
4545
bash ${DRIVERS_TOOLS}/.evergreen/run-orchestration.sh
4646
# run-orchestration generates expansion file with the MONGODB_URI for the cluster

0 commit comments

Comments
 (0)