diff --git a/ccp/exliquid-setup.sh b/ccp/exliquid-setup.sh index e1daa11..8102fcb 100644 --- a/ccp/exliquid-setup.sh +++ b/ccp/exliquid-setup.sh @@ -1,7 +1,18 @@ #!/bin/bash function exliquidSetup() { - if [ -n "$EXLIQUID" ]; then + 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 log INFO "EXLIQUID setup detected -- will start Report-Hub." OVERRIDE+="-f ./$PROJECT/exliquid-compose.yml" fi