mirror of https://github.com/samply/bridgehead.git
Merge id-management-setup with main
This commit is contained in:
parent
0cfe1d3617
commit
32de51eefb
|
@ -51,3 +51,18 @@ function legacyIdMapping() {
|
||||||
normalized_string=$(applySpecialCases "$uppercase_string");
|
normalized_string=$(applySpecialCases "$uppercase_string");
|
||||||
echo "$normalized_string" | tr -d ' '
|
echo "$normalized_string" | tr -d ' '
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if [ -n "$IDMANAGER_UPLOAD_APIKEY" ]; then
|
||||||
|
log INFO "id-management setup detected -- will start id-management (mainzelliste & magicpl)."
|
||||||
|
OVERRIDE+=" -f ./$PROJECT/modules/id-management-compose.yml"
|
||||||
|
|
||||||
|
# Auto Generate local Passwords
|
||||||
|
PATIENTLIST_POSTGRES_PASSWORD="$(echo \"id-management-module-db-password-salt\" | openssl rsautl -sign -inkey /etc/bridgehead/pki/${SITE_ID}.priv.pem | base64 | head -c 30)"
|
||||||
|
IDMANAGER_LOCAL_PATIENTLIST_APIKEY="$(cat /proc/sys/kernel/random/uuid | sed 's/[-]//g' | head -c 20)"
|
||||||
|
|
||||||
|
# Transform Seeds Configuration to pass it to the Mainzelliste Container
|
||||||
|
PATIENTLIST_SEEDS_TRANSFORMED="$(declare -p PATIENTLIST_SEEDS | tr -d '\"' | sed 's/\[/\[\"/g' | sed 's/\]/\"\]/g')"
|
||||||
|
|
||||||
|
# Ensure old ids are working !!!
|
||||||
|
export IDMANAGEMENT_FRIENDLY_ID=$(legacyIdMapping "$SITE_ID")
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in New Issue