mirror of https://github.com/samply/bridgehead.git
10 lines
322 B
Bash
10 lines
322 B
Bash
#!/bin/bash
|
|
|
|
if [ -n "${ENABLE_DNPM}" ]; then
|
|
log INFO "DNPM setup detected (Beam.Connect) -- will start Beam.Connect for DNPM."
|
|
OVERRIDE+=" -f ./$PROJECT/modules/dnpm-compose.yml"
|
|
|
|
# Set variables required for Beam-Connect
|
|
DNPM_BEAM_SECRET_SHORT="$(cat /proc/sys/kernel/random/uuid | sed 's/[-]//g' | head -c 20)"
|
|
fi
|