diff --git a/scripts/iobroker_restart b/scripts/iobroker_restart new file mode 100644 index 0000000..8157497 --- /dev/null +++ b/scripts/iobroker_restart @@ -0,0 +1,11 @@ +#!/bin/sh + +# Einfaches Script zum Stoppen von ioBroker. +# Kann zum Beispiel aus ioBroker heraus aufgerufen werden um ioBroker neu zu starten. + +cd /opt/iobroker +./iobroker stop +sleep 5 +./iobroker start + +exit