mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-22 04:26:28 +01:00
6 lines
180 B
Bash
6 lines
180 B
Bash
#!/usr/bin/with-contenv bashio
|
|
|
|
for k in $(bashio::jq "${__BASHIO_ADDON_CONFIG}" 'keys | .[]'); do
|
|
printf "$(bashio::config "$k")" >/var/run/s6/container_environment/"$k"
|
|
done
|