From b74b1d80659f19329d7755d4d0fc83dd14777334 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Wed, 15 Jan 2025 18:52:09 +0100 Subject: [PATCH] Update 99-run.sh --- postgres/rootfs/etc/cont-init.d/99-run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/postgres/rootfs/etc/cont-init.d/99-run.sh b/postgres/rootfs/etc/cont-init.d/99-run.sh index 7fa185616..70a57a29f 100755 --- a/postgres/rootfs/etc/cont-init.d/99-run.sh +++ b/postgres/rootfs/etc/cont-init.d/99-run.sh @@ -37,8 +37,8 @@ bashio::log.info "Starting the app" # Start background tasks if [ "$(bashio::info.arch)" != "armv7" ]; then # /./docker-entrypoint-initdb.d/10-vector.sh & true - docker-entrypoint.sh postgres -c shared_preload_libraries=vectors.so -c search_path="public, vectors" -c logging_collector=on & true + docker-entrypoint.sh postgres -c shared_preload_libraries=vectors.so -c search_path="public, vectors" -c logging_collector=on else bashio::log.warning "ARMv7 detected: Starting without vectors.so" - docker-entrypoint.sh postgres & true + docker-entrypoint.sh postgres fi