Files
hassio-addons/transmission_openvpn/rootfs/templates/restart_addon
Alexandre a4830e5492 test
2022-11-03 18:50:21 +01:00

11 lines
244 B
Plaintext

#!/usr/bin/env bashio
# shellcheck shell=bash
/etc/bashioenv >> /etc/bashioenv
if [ -f /vpn_stopped ]; then
bashio::log.fatal 'Tunnel down, addon restarting in 15 seconds' &>/proc/1/fd/1
sleep 15
bashio::addon.restart &>/proc/1/fd/1
fi