mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-08-08 14:12:30 +02:00
Merge pull request #2726 from petruknw/master
aurral: v1.76.17-2 - fix entrypoint, restore mkdirs, clean up build.json
This commit is contained in:
@@ -2,6 +2,11 @@
|
|||||||
- Minor bugs fixed
|
- Minor bugs fixed
|
||||||
# Changelog
|
# 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
|
## 1.76.17-1
|
||||||
|
|
||||||
- Add `weekly_flow_folder` option (configurable subfolder for weekly flow files)
|
- Add `weekly_flow_folder` option (configurable subfolder for weekly flow files)
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
name: Aurral
|
name: Aurral
|
||||||
version: "1.76.17-1"
|
version: "1.76.17-2"
|
||||||
slug: aurral
|
slug: aurral
|
||||||
description: >-
|
description: >-
|
||||||
Self-hosted music discovery, request management, flows, and playlist
|
Self-hosted music discovery, request management, flows, and playlist
|
||||||
|
|||||||
@@ -1,13 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -e
|
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 /config/data
|
||||||
mkdir -p "${DOWNLOAD_FOLDER}"
|
mkdir -p "${DOWNLOAD_FOLDER}"
|
||||||
mkdir -p "${WEEKLY_FLOW_FOLDER}"
|
mkdir -p "${WEEKLY_FLOW_FOLDER}"
|
||||||
|
|||||||
Reference in New Issue
Block a user