Update run.txt

This commit is contained in:
Alexandre
2022-06-22 15:06:44 +02:00
committed by GitHub
parent 4193ddb265
commit e56ed74dc0

View File

@@ -56,12 +56,15 @@ if [ -f /app/frontend/Caddyfile ]; then
echo "Caddyfile adapted" echo "Caddyfile adapted"
fi fi
################# ####################
# SET VARIABLES # # Export variables #
################# ####################
PGID="$(bashio::config 'PGID')" bashio::log.info "Exporting variables"
PUID="$(bashio::config 'PUID')" for k in $(bashio::jq "/data/options.json" 'keys | .[]'); do
bashio::log.blue "$k"="$(bashio::config "$k")"
export "$k"="$(bashio::config "$k")"
done
############### ###############
# PERMISSIONS # # PERMISSIONS #