mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-19 02:58:11 +01:00
13 lines
197 B
Plaintext
13 lines
197 B
Plaintext
#!/usr/bin/env bashio
|
|
|
|
bashio::log.fatal 'Tunnel down, addon restarting in 15 seconds'
|
|
|
|
sleep 15
|
|
|
|
# force container environment
|
|
for i in $(/usr/bin/env); do
|
|
export "$i"
|
|
done
|
|
|
|
bashio::addon.restart
|