mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-09 17:31:03 +01:00
14 lines
292 B
Bash
Executable File
14 lines
292 B
Bash
Executable File
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
# Waiting for dbus
|
|
until [[ -e /var/run/dbus/system_bus_socket ]]; do
|
|
sleep 1s
|
|
done
|
|
|
|
TZ_VALUE="$(timedatectl show -p Timezone --value)"
|
|
export TZ="$TZ_VALUE"
|
|
|
|
echo "Starting service: avahi daemon"
|
|
exec \
|
|
avahi-daemon --no-chroot
|