C4 psuedo fix

This commit is contained in:
root 2022-01-10 14:29:12 +01:00
parent 3709c0dbf7
commit 33b2c80aa8
2 changed files with 7 additions and 6 deletions

View File

@ -94,7 +94,7 @@ services:
MAGICPL_OIDC_PROVIDER: ${MAGICPL_OIDC_PROVIDER} MAGICPL_OIDC_PROVIDER: ${MAGICPL_OIDC_PROVIDER}
MAGICPL_OIDC_CLIENT_ID: ${MAGICPL_OIDC_CLIENT_ID} MAGICPL_OIDC_CLIENT_ID: ${MAGICPL_OIDC_CLIENT_ID}
MAGICPL_OIDC_CLIENT_SECRET: ${MAGICPL_OIDC_CLIENT_SECRET} MAGICPL_OIDC_CLIENT_SECRET: ${MAGICPL_OIDC_CLIENT_SECRET}
MAGICPL_SITE: adt MAGICPL_SITE: ${SITEID}
MAGICPL_LOG_LEVEL: info MAGICPL_LOG_LEVEL: info
TZ: Europe/Berlin TZ: Europe/Berlin
volumes: volumes:
@ -123,7 +123,7 @@ services:
ML_DB_PASS: ${ML_DB_PASS} ML_DB_PASS: ${ML_DB_PASS}
ML_API_KEY: ${ML_API_KEY} ML_API_KEY: ${ML_API_KEY}
ML_LOG_LEVEL: warning ML_LOG_LEVEL: warning
ML_SITE: adt ML_SITE: ${SITEID}
TZ: Europe/Berlin TZ: Europe/Berlin
env_file: env_file:
- ../site-config/patientlist.env - ../site-config/patientlist.env

View File

@ -15,13 +15,14 @@ if [ -z "$BRIDGEHEAD_PATH" ] ; then
exit exit
fi fi
cd /etc/systemd/system/ _systemd_path=/etc/systemd/system/
echo "Installing bridgehead\@.service in systemd ..." echo "Installing bridgehead\@.service in systemd ..."
sudo cp ${BRIDGEHEAD_PATH}/convenience/bridgehead\@.service ./ sudo cp convenience/bridgehead\@.service $_systemd_path
echo "Installing bridgehead\@.update.service in systemd ..." echo "Installing bridgehead\@.update.service in systemd ..."
sudo cp ${BRIDGEHEAD_PATH}/convenience/bridgehead-update\@.service ./ sudo cp convenience/bridgehead-update\@.service $_systemd_path
sudo cp ${BRIDGEHEAD_PATH}/convenience/bridgehead-update\@.timer ./ sudo cp convenience/bridgehead-update\@.timer $_systemd_path
echo "Loading the bridgehead definitions in systemd" echo "Loading the bridgehead definitions in systemd"
sudo systemctl daemon-reload sudo systemctl daemon-reload