mirror of
https://github.com/buanet/ioBroker.docker.git
synced 2025-12-18 19:09:02 +02:00
10 lines
175 B
Bash
10 lines
175 B
Bash
#!/bin/sh
|
|
|
|
# Einfaches Script zum Stoppen von ioBroker.
|
|
# Kann zum Beispiel aus ioBroker heraus aufgerufen werden um ioBroker zu stoppen.
|
|
|
|
cd /opt/iobroker
|
|
pkill io
|
|
|
|
exit 0
|