mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 02:11:01 +01:00
6 lines
177 B
Bash
6 lines
177 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
|