mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-06-26 17:26:05 +02:00
Merge pull request #2545 from alexbelgium/copilot/fix-firefly-iii-importer-boot
Fix Firefly III Data Importer boot failure: unbound JSON_CONFIGURATION_DIR
This commit is contained in:
@@ -1,4 +1,7 @@
|
|||||||
|
|
||||||
|
## 2.1.1-3 (2026-02-27)
|
||||||
|
- Fix boot failure due to unbound JSON_CONFIGURATION_DIR variable (https://github.com/alexbelgium/hassio-addons/issues/1852)
|
||||||
|
|
||||||
## 2.1.1-2 (2026-02-23)
|
## 2.1.1-2 (2026-02-23)
|
||||||
- Fix cron auto-import no longer triggering after env changes (https://github.com/alexbelgium/hassio-addons/issues/1839)
|
- Fix cron auto-import no longer triggering after env changes (https://github.com/alexbelgium/hassio-addons/issues/1839)
|
||||||
- Fix health check log spam in nginx
|
- Fix health check log spam in nginx
|
||||||
|
|||||||
@@ -101,5 +101,5 @@ schema:
|
|||||||
slug: fireflyiii_data_importer
|
slug: fireflyiii_data_importer
|
||||||
udev: true
|
udev: true
|
||||||
url: https://github.com/alexbelgium/hassio-addons
|
url: https://github.com/alexbelgium/hassio-addons
|
||||||
version: "2.1.1-2"
|
version: "2.1.1-3"
|
||||||
webui: "[PROTO:ssl]://[HOST]:[PORT:8080]"
|
webui: "[PROTO:ssl]://[HOST]:[PORT:8080]"
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ CONFIGSOURCE=$(bashio::config "CONFIG_LOCATION")
|
|||||||
# CONFIG IMPORT #
|
# CONFIG IMPORT #
|
||||||
#################
|
#################
|
||||||
|
|
||||||
|
JSON_CONFIGURATION_DIR=""
|
||||||
if [ "$(ls -A "$CONFIGSOURCE/configurations")" ]; then
|
if [ "$(ls -A "$CONFIGSOURCE/configurations")" ]; then
|
||||||
bashio::log.info "Configurations were found in $CONFIGSOURCE/configurations, they will be loaded."
|
bashio::log.info "Configurations were found in $CONFIGSOURCE/configurations, they will be loaded."
|
||||||
JSON_CONFIGURATION_DIR="$CONFIGSOURCE/configurations"
|
JSON_CONFIGURATION_DIR="$CONFIGSOURCE/configurations"
|
||||||
|
|||||||
Reference in New Issue
Block a user