mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-06-29 10:46:05 +02:00
Update 99-run.sh
This commit is contained in:
@@ -44,10 +44,12 @@ trap 'shutdown_postgres' SIGTERM SIGINT
|
|||||||
|
|
||||||
# Start background tasks
|
# Start background tasks
|
||||||
if [ "$(bashio::info.arch)" != "armv7" ]; then
|
if [ "$(bashio::info.arch)" != "armv7" ]; then
|
||||||
/./docker-entrypoint-initdb.d/10-vector.sh & VECTOR_PID=$!
|
/./docker-entrypoint-initdb.d/10-vector.sh & true
|
||||||
|
|
||||||
docker-entrypoint.sh postgres -c shared_preload_libraries=vectors.so & POSTGRES_PID=$!
|
docker-entrypoint.sh postgres -c shared_preload_libraries=vectors.so & true
|
||||||
else
|
else
|
||||||
bashio::log.warning "ARMv7 detected: Starting without vectors.so"
|
bashio::log.warning "ARMv7 detected: Starting without vectors.so"
|
||||||
docker-entrypoint.sh postgres & POSTGRES_PID=$!
|
docker-entrypoint.sh postgres & true
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
while :; do sleep infinity & wait $!; done
|
||||||
|
|||||||
Reference in New Issue
Block a user