mirror of
https://github.com/buanet/ioBroker.docker.git
synced 2025-12-20 11:49:10 +02:00
13 lines
188 B
Bash
13 lines
188 B
Bash
#!/bin/sh
|
|
|
|
echo 'Preparing...'
|
|
rm /var/run/dbus/pid >/dev/null 2>&1
|
|
dbus-daemon --system
|
|
|
|
echo 'Restarting...'
|
|
/etc/init.d/avahi-daemon stop
|
|
sleep 5
|
|
/etc/init.d/avahi-daemon start
|
|
|
|
exit 0
|