mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-16 17:38:17 +01:00
10 lines
194 B
Bash
Executable File
10 lines
194 B
Bash
Executable File
#!/usr/bin/with-contenv bashio
|
|
# Waiting for dbus
|
|
until [[ -e /var/run/dbus/system_bus_socket ]]; do
|
|
sleep 1s
|
|
done
|
|
|
|
echo "Starting service: avahi daemon"
|
|
exec \
|
|
avahi-daemon --no-chroot
|