mirror of https://github.com/samply/bridgehead.git
19 lines
387 B
Bash
19 lines
387 B
Bash
#!/bin/bash
|
|
|
|
function exliquidSetup() {
|
|
case ${SITE_ID} in
|
|
berlin|dresden|essen|frankfurt|luebeck|mainz|muenchen-lmu|muenchen-tum|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
|
|
} |