Check against LDM_PASSWORD

This commit is contained in:
Martin Lablans 2022-11-03 17:29:52 +01:00
parent a9864a928c
commit 729d4e2c1e
2 changed files with 2 additions and 2 deletions

View File

@ -59,13 +59,13 @@ if [ -f "$PROJECT/docker-compose.override.yml" ]; then
fi
detectCompose
setLdmPassword
case "$ACTION" in
start)
hc_send log "Bridgehead $PROJECT startup: Checking requirements ..."
checkRequirements
hc_send log "Bridgehead $PROJECT startup: Requirements checked out. Now starting bridgehead ..."
setLdmPassword
exec $COMPOSE -f ./$PROJECT/docker-compose.yml $OVERRIDE up --abort-on-container-exit
;;
stop)

View File

@ -34,7 +34,7 @@ bridgehead ALL= NOPASSWD: BRIDGEHEAD${PROJECT^^}
EOF
# TODO: Determine wether this should be located in setup-bridgehead (triggered through bridgehead install) or in update bridgehead (triggered every hour)
if [ -z "$LDM_LOGIN" ]; then
if [ -z "$LDM_PASSWORD" ]; then
log "INFO" "Now generating a password for the local data management. Please save the password for your ETL process!"
generated_passwd="$(cat /proc/sys/kernel/random/uuid | sed 's/[-]//g' | head -c 20)"