Bugfix: fix modules path

This commit is contained in:
juarez 2023-02-10 16:01:04 +01:00
parent c757c35e65
commit 168967aace
3 changed files with 4 additions and 4 deletions

View File

@ -14,6 +14,6 @@ function exliquidSetup() {
esac esac
if [[ $EXLIQUID -eq 1 ]]; then if [[ $EXLIQUID -eq 1 ]]; then
log INFO "EXLIQUID setup detected -- will start Report-Hub." log INFO "EXLIQUID setup detected -- will start Report-Hub."
OVERRIDE+=" -f ./$PROJECT/exliquid-compose.yml" OVERRIDE+=" -f ./$PROJECT/modules/exliquid-compose.yml"
fi fi
} }

View File

@ -8,6 +8,6 @@ function mtbaSetup() {
log ERROR "Detected MTBA Module configuration but ID-Management Module seems not to be configured!" log ERROR "Detected MTBA Module configuration but ID-Management Module seems not to be configured!"
exit 1; exit 1;
fi fi
OVERRIDE+=" -f ./$PROJECT/mtba-compose.yml" OVERRIDE+=" -f ./$PROJECT/modules/mtba-compose.yml"
fi fi
} }

View File

@ -3,7 +3,7 @@
function nngmSetup() { function nngmSetup() {
if [ -n "$NNGM_CTS_APIKEY" ]; then if [ -n "$NNGM_CTS_APIKEY" ]; then
log INFO "nNGM setup detected -- will start nNGM Connector." log INFO "nNGM setup detected -- will start nNGM Connector."
OVERRIDE+=" -f ./$PROJECT/nngm-compose.yml" OVERRIDE+=" -f ./$PROJECT/modules/nngm-compose.yml"
fi fi
CONNECTOR_POSTGRES_PASSWORD="$(echo \"This is a salt string to generate one consistent password. It is not required to be secret.\" | openssl rsautl -sign -inkey /etc/bridgehead/pki/${SITE_ID}.priv.pem | base64 | head -c 30)" CONNECTOR_POSTGRES_PASSWORD="$(echo \"This is a salt string to generate one consistent password. It is not required to be secret.\" | openssl rsautl -sign -inkey /etc/bridgehead/pki/${SITE_ID}.priv.pem | base64 | head -c 30)"
} }