From a630757a1234232c0cb850c12dbe9d11f250c130 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 27 May 2025 13:39:40 +0200 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 2626310f6..aef7f7f70 100755 --- a/postgres/rootfs/etc/cont-init.d/99-run.sh +++ b/postgres/rootfs/etc/cont-init.d/99-run.sh @@ -50,7 +50,7 @@ if [ "$(bashio::info.arch)" = "armv7" ]; then immich-docker-entrypoint.sh postgres & true exit 0 else - immich-docker-entrypoint.sh postgres -c config_file=/etc/postgresql/postgresql.conf & true + immich-docker-entrypoint.sh postgres "-c config_file=/etc/postgresql/postgresql.conf" & true fi ############################### @@ -180,7 +180,7 @@ troubleshoot_vchord_extension() { ext_check=$(psql "postgres://$DB_USERNAME:$DB_PASSWORD@$DB_HOSTNAME:$DB_PORT" \ -tAc "SELECT count(*) FROM pg_available_extensions WHERE name = 'vchord';") if [[ "$ext_check" -eq 0 ]]; then - bashio::log.error "'vchord' extension is missing. Ensure vchord is installed." + bashio::log.error "'vchord' extension is missing. Ensure vchord is installed. If this is your first boot it will be installed later" exit 1 fi }