From d33b44a16061573ab98a7b1d37c0de57be9abe87 Mon Sep 17 00:00:00 2001 From: Gitouche <26656-gitouche@users.noreply.framagit.org> Date: Sat, 29 Jul 2023 11:40:17 +0200 Subject: [PATCH] matrix : dont wait for DB --- podman-matrix/10_install.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/podman-matrix/10_install.sh b/podman-matrix/10_install.sh index 5e0c2d8..e7eacc9 100755 --- a/podman-matrix/10_install.sh +++ b/podman-matrix/10_install.sh @@ -35,9 +35,6 @@ podman container run -d --name ${db_container_name} --pod ${pod_name} --requires -e POSTGRES_DB=${container_name} \ -e POSTGRES_INITDB_ARGS="--encoding=UTF8 --locale=C" \ ${postgres_image}:${postgres_version} && -echo -n "Waiting for PostgreSQL to be ready... " && -( podman container logs -f ${db_container_name} 2>&1 & ) | grep -q 'database system is ready to accept connections' && -echo "OK." && podman container run -d --name ${container_name} --pod ${pod_name} --requires=${project_name}_infra --net ${project_name}_default \ --mount type=volume,src=${confvolume},dst=/data --publish ${listen_if}:${listen_port}:8008 ${synapse_image}:${synapse_version} && echo -n "Waiting for background tasks to end... " &&