mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-05-30 04:14:04 +02:00
init false
This commit is contained in:
@@ -97,5 +97,5 @@
|
|||||||
},
|
},
|
||||||
"slug": "birdnet-pi",
|
"slug": "birdnet-pi",
|
||||||
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/birdnet-pi",
|
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/birdnet-pi",
|
||||||
"version": "1.1"
|
"version": "1.2"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
#!/usr/bin/with-contenv bashio
|
#!/usr/bin/with-contenv bashio
|
||||||
echo "Starting service: pulseaudio"
|
echo "Starting service: pulseaudio"
|
||||||
exec s6-setuidgid abc \
|
exec s6-setuidgid pi /usr/bin/pulseaudio \
|
||||||
/usr/bin/pulseaudio \
|
|
||||||
--log-level=0 \
|
--log-level=0 \
|
||||||
--log-target=stderr \
|
--log-target=stderr \
|
||||||
--exit-idle-time=-1 > /dev/null 2>&1
|
--exit-idle-time=-1 > /dev/null 2>&1
|
||||||
@@ -1,4 +1,8 @@
|
|||||||
#!/usr/bin/with-contenv bashio
|
#!/usr/bin/with-contenv bashio
|
||||||
echo "Starting service: caddy"
|
echo "Starting service: caddy"
|
||||||
|
until [[ -e /var/run/dbus/system_bus_socket ]]; do
|
||||||
|
sleep 1s
|
||||||
|
done
|
||||||
|
|
||||||
exec \
|
exec \
|
||||||
s6-setuidgid "$USER" /usr/bin/caddy run --config /etc/caddy/Caddyfile
|
s6-setuidgid "$USER" /usr/bin/caddy run --config /etc/caddy/Caddyfile
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
#!/usr/bin/with-contenv bashio
|
#!/usr/bin/with-contenv bashio
|
||||||
echo "Starting service: getty"
|
echo "Starting service: getty"
|
||||||
|
until [[ -e /var/run/dbus/system_bus_socket ]]; do
|
||||||
|
sleep 1s
|
||||||
|
done
|
||||||
|
|
||||||
exec \
|
exec \
|
||||||
s6-setuidgid "$USER" /sbin/agetty --autologin "${USER}"
|
s6-setuidgid "$USER" /sbin/agetty --autologin "${USER}"
|
||||||
--noclear %I "$TERM"
|
--noclear %I "$TERM"
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
#!/usr/bin/with-contenv bashio
|
#!/usr/bin/with-contenv bashio
|
||||||
echo "Starting service: livestream"
|
echo "Starting service: livestream"
|
||||||
|
until [[ -e /var/run/dbus/system_bus_socket ]]; do
|
||||||
|
sleep 1s
|
||||||
|
done
|
||||||
|
|
||||||
exec \
|
exec \
|
||||||
s6-setuidgid "$USER" /usr/local/bin/livestream.sh
|
s6-setuidgid "$USER" /usr/local/bin/livestream.sh
|
||||||
|
|||||||
Reference in New Issue
Block a user