Files
hassio-addons/readarr/rootfs/etc/cont-init.d/00-config_location.sh
2026-01-08 13:44:21 +01:00

10 lines
213 B
Bash
Executable File

#!/usr/bin/with-contenv bashio
# shellcheck shell=bash
set -e
CONFIG_LOCATION="/config"
bashio::log.info "Config stored in $CONFIG_LOCATION"
mkdir -p "$CONFIG_LOCATION"
chown -R "$PUID:$PGID" "$CONFIG_LOCATION"