mirror of
https://github.com/buanet/ioBroker.docker.git
synced 2025-12-20 19:59:11 +02:00
11 lines
253 B
Bash
11 lines
253 B
Bash
#!/bin/sh
|
|
|
|
# Einfaches Script zum Stoppen von ioBroker.
|
|
# Kann zum Beispiel aus ioBroker heraus aufgerufen werden um ioBroker neu zu starten.
|
|
|
|
cd /opt/iobroker
|
|
pkill io
|
|
sleep 5
|
|
gosu iobroker node node_modules/iobroker.js-controller/controller.js
|
|
exit 0
|