mirror of https://github.com/samply/bridgehead.git
Bugfix: fix modules path
This commit is contained in:
parent
c757c35e65
commit
168967aace
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
|
@ -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)"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue