Files
hassio-addons/zzz_draft_birdnet-pi/rootfs/custom-services.d/00_dbus
2024-04-26 16:54:30 +02:00

16 lines
320 B
Plaintext

#!/usr/bin/with-contenv bashio
# Waiting for dbus
until [[ -e /var/run/dbus/system_bus_socket ]]; do
sleep 1s
done
echo "Starting service: pulseaudio"
while :
do
if [[ ! $(/usr/bin/pulseaudio --check) ]]; then
exec \
s6-setuidgid "$USER" /usr/bin/pulseaudio --start
fi
sleep 10
done