bridgehead/ccp/modules/exliquid-setup.sh

20 lines
404 B
Bash
Raw Normal View History

2022-10-31 08:26:25 +01:00
#!/bin/bash
function exliquidSetup() {
case ${SITE_ID} in
berlin|dresden|essen|frankfurt|freiburg|luebeck|mainz|muenchen-lmu|muenchen-tu|mannheim|tuebingen)
EXLIQUID=1
;;
dktk-test)
EXLIQUID=1
;;
*)
EXLIQUID=0
;;
esac
if [[ $EXLIQUID -eq 1 ]]; then
2022-12-05 13:18:14 +01:00
log INFO "EXLIQUID setup detected -- will start Report-Hub."
2023-02-10 16:01:04 +01:00
OVERRIDE+=" -f ./$PROJECT/modules/exliquid-compose.yml"
2022-10-31 08:26:25 +01:00
fi
2023-02-10 16:01:04 +01:00
}