This commit is contained in:
kingwil 2024-04-18 18:32:01 +01:00
Родитель 881439f1d1
Коммит 1d2db10abf
1 изменённых файлов: 3 добавлений и 4 удалений

Просмотреть файл

@ -231,10 +231,9 @@ while IFS= read -r contname; do
cmdparams=""
for variable in "${containervariables[@]}"; do
# Check if we set the APPID and APPSECRET, if we do, we need to update the container with the new values
if [[ $variable == AZURE_CLIENT_ID=* && -n $APPID ]]; then
variable="AZURE_CLIENT_ID=$APPID"
elif [[ $variable == AZURE_CLIENT_SECRET=* && -n $APPSECRET ]]; then
variable="AZURE_CLIENT_SECRET=$APPSECRET"
if [[ -n $APPID && -n $APPSECRET ]]; then
[[ $variable == AZURE_CLIENT_ID=* ]] && variable="AZURE_CLIENT_ID=$APPID"
[[ $variable == AZURE_CLIENT_SECRET=* ]] && variable="AZURE_CLIENT_SECRET=$APPSECRET"
fi
if [[ ! $variable == PATH=* ]] &&