From 12ed0d89f0ab1c56d59383ae960f5ef925e2223b Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Wed, 16 Jul 2025 09:03:50 +0200 Subject: [PATCH] update --- ente/Dockerfile | 2 +- ente/config.json | 2 +- .../cont-init.d/20-internal-db-bootstrap.sh | 3 +- ente/rootfs/etc/cont-init.d/99-run.sh | 47 +++++++++++++++++-- 4 files changed, 48 insertions(+), 6 deletions(-) diff --git a/ente/Dockerfile b/ente/Dockerfile index 509ca2c6a..e33f78af7 100644 --- a/ente/Dockerfile +++ b/ente/Dockerfile @@ -116,4 +116,4 @@ LABEL \ # 6 Finish line # ################# # S6 will pick up run scripts from /etc/services.d supplied in rootfs -# and launch: › minio › museum API › (optional) web‑UI +# and launch: › minio › museum API › (optional) web‑UI \ No newline at end of file diff --git a/ente/config.json b/ente/config.json index d2a261aa0..f7ad2a9bc 100644 --- a/ente/config.json +++ b/ente/config.json @@ -77,7 +77,7 @@ "startup": "services", "udev": true, "url": "https://github.com/alexbelgium/hassio-addons", - "version": "1.0.0test3", + "version": "1.0.0test4", "video": true, "webui": "http://[HOST]:[PORT:3000]" } diff --git a/ente/rootfs/etc/cont-init.d/20-internal-db-bootstrap.sh b/ente/rootfs/etc/cont-init.d/20-internal-db-bootstrap.sh index 031282e72..3e0704366 100755 --- a/ente/rootfs/etc/cont-init.d/20-internal-db-bootstrap.sh +++ b/ente/rootfs/etc/cont-init.d/20-internal-db-bootstrap.sh @@ -16,7 +16,6 @@ DB_NAME="$(bashio::config 'DB_DATABASE_NAME')" until pg_isready -q -h localhost -p 5432 -U postgres; do bashio::log.info "Waiting for Postgres to accept connections…" sleep 1 -done bashio::log.info "Creating role + database if needed…" su - postgres -c psql <