2023-08-07 13:00:37 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
if [ "${ENABLE_ERIC}" == "true" ]; then
|
|
|
|
log INFO "BBMRI-ERIC setup detected -- will start services for BBMRI-ERIC."
|
|
|
|
OVERRIDE+=" -f ./$PROJECT/modules/eric-compose.yml"
|
|
|
|
|
|
|
|
# Set required variables
|
|
|
|
ERIC_BROKER_ID=broker.bbmri.samply.de
|
|
|
|
ERIC_BROKER_URL=https://${ERIC_BROKER_ID}
|
|
|
|
ERIC_PROXY_ID=${SITE_ID}.${ERIC_BROKER_ID}
|
|
|
|
ERIC_FOCUS_BEAM_SECRET_SHORT="$(cat /proc/sys/kernel/random/uuid | sed 's/[-]//g' | head -c 20)"
|
|
|
|
ERIC_SUPPORT_EMAIL=bridgehead@helpdesk.bbmri-eric.eu
|
2023-09-07 08:16:47 +02:00
|
|
|
|
|
|
|
#Monitoring
|
|
|
|
ERIC_MONITORING_BEAM_SECRET_SHORT="$(cat /proc/sys/kernel/random/uuid | sed 's/[-]//g' | head -c 20)"
|
2023-08-07 13:00:37 +02:00
|
|
|
fi
|