bridgehead/ccp/modules/mtba-setup.sh

13 lines
527 B
Bash
Raw Permalink Normal View History

2023-08-16 09:35:36 +02:00
#!/bin/bash
function mtbaSetup() {
# TODO: Check if ID-Management Module is activated!
if [ -n "$ENABLE_MTBA" ];then
log INFO "MTBA setup detected -- will start MTBA Service and CBioPortal."
if [ ! -n "$IDMANAGER_UPLOAD_APIKEY" ]; then
log ERROR "Detected MTBA Module configuration but ID-Management Module seems not to be configured!"
exit 1;
fi
2023-08-16 09:37:30 +02:00
OVERRIDE+=" -f ./$PROJECT/modules/mtba-compose.yml"
2023-08-16 09:35:36 +02:00
fi
}