9 lines
156 B
Text
9 lines
156 B
Text
#!/usr/bin/with-contenv bash
|
|
|
|
until [[ -e /var/run/dbus/system_bus_socket ]]; do
|
|
sleep 1s
|
|
done
|
|
|
|
echo "Starting Avahi daemon"
|
|
exec avahi-daemon --no-chroot
|
|
|