diff --git a/aurral/CHANGELOG.md b/aurral/CHANGELOG.md index 41458486b4..4f53313579 100644 --- a/aurral/CHANGELOG.md +++ b/aurral/CHANGELOG.md @@ -2,6 +2,11 @@ - Minor bugs fixed # Changelog +## 1.76.17-2 + +- Fix entrypoint: use HA-injected env vars instead of bashio (not available in upstream image) +- Restore mkdir for persistent data/download directories + ## 1.76.17-1 - Add `weekly_flow_folder` option (configurable subfolder for weekly flow files) diff --git a/aurral/config.yaml b/aurral/config.yaml index c397f56dc4..8f87d1dfd0 100644 --- a/aurral/config.yaml +++ b/aurral/config.yaml @@ -1,5 +1,5 @@ name: Aurral -version: "1.76.17-1" +version: "1.76.17-2" slug: aurral description: >- Self-hosted music discovery, request management, flows, and playlist diff --git a/aurral/rootfs/usr/local/bin/docker-entrypoint.sh b/aurral/rootfs/usr/local/bin/docker-entrypoint.sh index 16bca8c0e1..7b6b1e9c06 100755 --- a/aurral/rootfs/usr/local/bin/docker-entrypoint.sh +++ b/aurral/rootfs/usr/local/bin/docker-entrypoint.sh @@ -1,13 +1,6 @@ #!/bin/sh set -e -DOWNLOAD_FOLDER=$(bashio::config 'download_folder') -WEEKLY_FLOW_SUFFIX=$(bashio::config 'weekly_flow_folder') - -export DOWNLOAD_FOLDER -export WEEKLY_FLOW_FOLDER="${DOWNLOAD_FOLDER}/${WEEKLY_FLOW_SUFFIX}" - -# Create persistent directories in HA volumes mkdir -p /config/data mkdir -p "${DOWNLOAD_FOLDER}" mkdir -p "${WEEKLY_FLOW_FOLDER}"