bridgehead/ccp/exliquid-setup.sh

19 lines
394 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."
2022-10-31 08:26:25 +01:00
OVERRIDE+="-f ./$PROJECT/exliquid-compose.yml"
fi
}