mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 10:21:02 +01:00
9 lines
176 B
Plaintext
9 lines
176 B
Plaintext
#!/usr/bin/env bashio
|
|
# shellcheck shell=bash
|
|
set -e
|
|
|
|
bashio::log.fatal 'Tunnel down, addon restarting in 15 seconds'
|
|
sleep 15
|
|
touch /data/addonrestarted
|
|
bashio::addon.restart
|