GBN variable names

This commit is contained in:
Enola Knezevic 2024-01-08 16:15:46 +01:00
parent 29fb0e7099
commit 00030a6141
1 changed files with 6 additions and 6 deletions

View File

@ -7,17 +7,17 @@ if [ "${ENABLE_GBN}" == "true" ]; then
# The environment needs to be defined in /etc/bridgehead
case "$ENVIRONMENT" in
"production")
ERIC_BROKER_ID=broker.bbmri.samply.de
ERIC_ROOT_CERT=eric
GBN_BROKER_ID=broker.bbmri.samply.de
GBN_ROOT_CERT=gbn
;;
"test")
ERIC_BROKER_ID=broker-test.bbmri-test.samply.de
ERIC_ROOT_CERT=eric.test
GBN_BROKER_ID=broker-test.bbmri-test.samply.de
GBN_ROOT_CERT=gbn.test
;;
*)
report_error 6 "Environment \"$ENVIRONMENT\" is unknown. Assuming production. FIX THIS!"
ERIC_BROKER_ID=broker.bbmri.samply.de
ERIC_ROOT_CERT=eric
GBN_BROKER_ID=broker.bbmri.samply.de
GBN_ROOT_CERT=gbn
;;
esac