Adjust organizr version to v2-2

This commit is contained in:
Alexandre
2026-01-11 08:29:47 +01:00
parent 6014220e82
commit bf6be70610
3 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
## v2-2 (18-03-2026)
- Ensure folder permissions use configured PUID/PGID values
## v2 (11-01-2026)
- Minor bugs fixed

View File

@@ -86,5 +86,5 @@ schema:
slug: organizr
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "v2"
version: "v2-2"
webui: "[PROTO:ssl]://[HOST]:[PORT:80]"

View File

@@ -2,6 +2,9 @@
# shellcheck shell=bash
set -e
PUID="$(bashio::config 'PUID')"
PGID="$(bashio::config 'PGID')"
echo "Creating /data/organizr"
mkdir -p /data/organizr
chown -R "$PUID:$PGID" /data