bridgehead/minimal/modules/dnpm-setup.sh

14 lines
705 B
Bash
Raw Normal View History

2023-05-10 12:54:05 +02:00
#!/bin/bash
if [ -n "${ENABLE_DNPM}" ]; then
2023-05-19 13:53:03 +02:00
log DEBUG "DNPM setup detected (Beam.Connect) -- will start Beam and Beam.Connect for DNPM."
2023-05-17 11:26:55 +02:00
OVERRIDE+=" -f ./$PROJECT/modules/dnpm-compose.yml"
2023-05-10 12:54:05 +02:00
# Set variables required for Beam-Connect
2023-05-19 13:53:03 +02:00
DNPM_APPLICATION_SECRET="$(echo \"This is a salt string to generate one consistent password for DNPM. It is not required to be secret.\" | openssl pkeyutl -sign -inkey /etc/bridgehead/pki/${SITE_ID}.priv.pem | base64 | head -c 30)"
2023-05-10 12:54:05 +02:00
DNPM_BEAM_SECRET_SHORT="$(cat /proc/sys/kernel/random/uuid | sed 's/[-]//g' | head -c 20)"
2023-05-15 13:43:01 +02:00
DNPM_BROKER_ID="broker.dev.ccp-it.dktk.dkfz.de"
DNPM_BROKER_URL="https://${DNPM_BROKER_ID}"
DNPM_PROXY_ID="${SITE_ID}.${DNPM_BROKER_ID}"
2023-05-10 12:54:05 +02:00
fi