diff --git a/postgres/rootfs/etc/cont-init.d/99-run.sh b/postgres/rootfs/etc/cont-init.d/99-run.sh index e9a9267e6..8a5f48920 100755 --- a/postgres/rootfs/etc/cont-init.d/99-run.sh +++ b/postgres/rootfs/etc/cont-init.d/99-run.sh @@ -44,15 +44,12 @@ function shutdown_postgres { # Start background tasks if [ "$(bashio::info.arch)" != "armv7" ]; then - /./docker-entrypoint-initdb.d/10-vector.sh & - VECTOR_PID=$! + /./docker-entrypoint-initdb.d/10-vector.sh & VECTOR_PID=$! - docker-entrypoint.sh postgres -c shared_preload_libraries=vectors.so & - POSTGRES_PID=$! + docker-entrypoint.sh postgres -c shared_preload_libraries=vectors.so & POSTGRES_PID=$! else bashio::log.warning "ARMv7 detected: Starting without vectors.so" - docker-entrypoint.sh postgres & - POSTGRES_PID=$! + docker-entrypoint.sh postgres & POSTGRES_PID=$! fi bashio::log.info "Started!"