aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVladislav Sheshalevich <onlyselain@gmail.com>2022-09-04 11:43:51 +0300
committerCédric Ollivier <cedric.ollivier@orange.com>2022-09-05 09:38:12 +0200
commit661a9e4fc01a5cfbfb6dba6a896ac5d32354e9de (patch)
treea9d23d9e162519b4550fb3b1bcee959efe12834c
parent1c85266e537bb9806536aef698404ba6a78bb85c (diff)
[COMMON] Fix Portal MariaDB deploy error
Make fix to install Portal using OOM from scratch using user guide Issue-ID: OOM-3032 Signed-off-by: Vladislav Sheshalevich <onlyselain@gmail.com> Change-Id: I07f444d49c76b63abf889cc69b875795f84655d0
-rw-r--r--kubernetes/portal/components/portal-mariadb/resources/config/mariadb/docker-entrypoint.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/portal/components/portal-mariadb/resources/config/mariadb/docker-entrypoint.sh b/kubernetes/portal/components/portal-mariadb/resources/config/mariadb/docker-entrypoint.sh
index 63d266b75c..709877943c 100644
--- a/kubernetes/portal/components/portal-mariadb/resources/config/mariadb/docker-entrypoint.sh
+++ b/kubernetes/portal/components/portal-mariadb/resources/config/mariadb/docker-entrypoint.sh
@@ -110,7 +110,7 @@ docker_temp_server_start() {
# only use the root password if the database has already been initializaed
# so that it won't try to fill in a password file when it hasn't been set yet
extraArgs=""
- if [ -z "$DATABASE_ALREADY_EXISTS" ]; then
+ if [ "$DATABASE_ALREADY_EXISTS" = "false" ]; then
extraArgs=${extraArgs}" --dont-use-mysql-root-password"
fi
if echo 'SELECT 1' |docker_process_sql ${extraArgs} --database=mysql >/dev/null 2>&1; then
@@ -344,7 +344,7 @@ _main() {
fi
# there's no database, so it needs to be initialized
- if [ -z "$DATABASE_ALREADY_EXISTS" ]; then
+ if [ "$DATABASE_ALREADY_EXISTS" = "false" ]; then
docker_verify_minimum_env
# check dir permissions to reduce likelihood of half-initialized database