mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-21 20:16:28 +01:00
11 lines
244 B
Bash
Executable File
11 lines
244 B
Bash
Executable File
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
set -e
|
|
|
|
PUID="$(bashio::config 'PUID' || echo 1000)"
|
|
PGID="$(bashio::config 'PGID' || echo 1000)"
|
|
|
|
echo "Creating /data/organizr"
|
|
mkdir -p /data/organizr
|
|
chown "$PUID:$PGID" /data/organizr
|