mirror of
https://github.com/buanet/ioBroker.docker.git
synced 2025-12-20 19:59:11 +02:00
14 lines
248 B
Bash
14 lines
248 B
Bash
#!/bin/sh
|
|
|
|
cd /opt/iobroker
|
|
|
|
if [ -f .install_host ];
|
|
then
|
|
./iobroker host $(cat .install_host) && echo $(hostname) > .install_host
|
|
rm .install_host
|
|
fi
|
|
|
|
/opt/scripts/avahi_startup.sh
|
|
sleep 5
|
|
node node_modules/iobroker.js-controller/controller.js
|