C4 psuedo fix
This commit is contained in:
parent
3709c0dbf7
commit
33b2c80aa8
|
@ -94,7 +94,7 @@ services:
|
|||
MAGICPL_OIDC_PROVIDER: ${MAGICPL_OIDC_PROVIDER}
|
||||
MAGICPL_OIDC_CLIENT_ID: ${MAGICPL_OIDC_CLIENT_ID}
|
||||
MAGICPL_OIDC_CLIENT_SECRET: ${MAGICPL_OIDC_CLIENT_SECRET}
|
||||
MAGICPL_SITE: adt
|
||||
MAGICPL_SITE: ${SITEID}
|
||||
MAGICPL_LOG_LEVEL: info
|
||||
TZ: Europe/Berlin
|
||||
volumes:
|
||||
|
@ -123,7 +123,7 @@ services:
|
|||
ML_DB_PASS: ${ML_DB_PASS}
|
||||
ML_API_KEY: ${ML_API_KEY}
|
||||
ML_LOG_LEVEL: warning
|
||||
ML_SITE: adt
|
||||
ML_SITE: ${SITEID}
|
||||
TZ: Europe/Berlin
|
||||
env_file:
|
||||
- ../site-config/patientlist.env
|
||||
|
|
|
@ -15,13 +15,14 @@ if [ -z "$BRIDGEHEAD_PATH" ] ; then
|
|||
exit
|
||||
fi
|
||||
|
||||
cd /etc/systemd/system/
|
||||
_systemd_path=/etc/systemd/system/
|
||||
|
||||
|
||||
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 ..."
|
||||
sudo cp ${BRIDGEHEAD_PATH}/convenience/bridgehead-update\@.service ./
|
||||
sudo cp ${BRIDGEHEAD_PATH}/convenience/bridgehead-update\@.timer ./
|
||||
sudo cp convenience/bridgehead-update\@.service $_systemd_path
|
||||
sudo cp convenience/bridgehead-update\@.timer $_systemd_path
|
||||
|
||||
echo "Loading the bridgehead definitions in systemd"
|
||||
sudo systemctl daemon-reload
|
||||
|
|
Loading…
Reference in New Issue