From b15dd8ef9e329d6fec8716bcb85add852b4cdea0 Mon Sep 17 00:00:00 2001 From: Ogguz <67655416+Ogguz@users.noreply.github.com> Date: Wed, 26 Jan 2022 13:14:54 +0100 Subject: [PATCH] fix/external-config-persistence-settings-get-overwritten (#7) Signed-off-by: Ogguz --- entrypoint.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index d97833d..a623ca4 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -103,14 +103,14 @@ start_redis() { } main_function() { - if [[ -f "${EXTERNAL_CONFIG_FILE}" ]]; then - external_config - fi common_operation set_redis_password redis_mode_setup persistence_setup tls_setup + if [[ -f "${EXTERNAL_CONFIG_FILE}" ]]; then + external_config + fi start_redis } -- 2.26.0