From ad284b7edc272410985f2fb350a35d00259f3589 Mon Sep 17 00:00:00 2001 From: mmouly Date: Fri, 31 Jan 2025 10:00:03 +0100 Subject: [PATCH] update custom scripts --- decisioncenter/script/rundc.sh | 4 ++-- decisionserver/decisionrunner/script/rundr.sh | 4 ++-- decisionserver/decisionserverconsole/script/run.sh | 4 ++-- decisionserver/decisionserverruntime/script/runds.sh | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/decisioncenter/script/rundc.sh b/decisioncenter/script/rundc.sh index edb0ab65..faab398c 100755 --- a/decisioncenter/script/rundc.sh +++ b/decisioncenter/script/rundc.sh @@ -5,7 +5,7 @@ if [ ! -f /config/initialized ] then if [ -s "$SCRIPT/customStart.sh" ] then - $SCRIPT/customStart.sh + . $SCRIPT/customStart.sh fi $SCRIPT/download.sh @@ -39,7 +39,7 @@ then if [ -s "$SCRIPT/customEnd.sh" ] then - $SCRIPT/customEnd.sh + . $SCRIPT/customEnd.sh fi touch /config/initialized fi diff --git a/decisionserver/decisionrunner/script/rundr.sh b/decisionserver/decisionrunner/script/rundr.sh index c065df63..d03da4b1 100755 --- a/decisionserver/decisionrunner/script/rundr.sh +++ b/decisionserver/decisionrunner/script/rundr.sh @@ -5,7 +5,7 @@ if [ ! -f /config/initialized ] then if [ -s "$SCRIPT/customStart.sh" ] then - $SCRIPT/customStart.sh + . $SCRIPT/customStart.sh fi $SCRIPT/download.sh @@ -32,7 +32,7 @@ then if [ -s "$SCRIPT/customEnd.sh" ] then - $SCRIPT/customEnd.sh + . $SCRIPT/customEnd.sh fi touch /config/initialized fi diff --git a/decisionserver/decisionserverconsole/script/run.sh b/decisionserver/decisionserverconsole/script/run.sh index 5e00314b..a8f65287 100644 --- a/decisionserver/decisionserverconsole/script/run.sh +++ b/decisionserver/decisionserverconsole/script/run.sh @@ -5,7 +5,7 @@ if [ ! -f /config/initialized ] then if [ -s "$SCRIPT/customStart.sh" ] then - $SCRIPT/customStart.sh + . $SCRIPT/customStart.sh fi $SCRIPT/download.sh @@ -34,7 +34,7 @@ then if [ -s "$SCRIPT/customEnd.sh" ] then - $SCRIPT/customEnd.sh + . $SCRIPT/customEnd.sh fi touch /config/initialized fi diff --git a/decisionserver/decisionserverruntime/script/runds.sh b/decisionserver/decisionserverruntime/script/runds.sh index 370634a7..4ce0beed 100755 --- a/decisionserver/decisionserverruntime/script/runds.sh +++ b/decisionserver/decisionserverruntime/script/runds.sh @@ -5,7 +5,7 @@ if [ ! -f /config/initialized ] then if [ -s "$SCRIPT/customStart.sh" ] then - . $SCRIPT/customStart.sh + . $SCRIPT/customStart.sh fi $SCRIPT/download.sh @@ -34,7 +34,7 @@ then if [ -s "$SCRIPT/customEnd.sh" ] then - $SCRIPT/customEnd.sh + . $SCRIPT/customEnd.sh fi touch /config/initialized fi