entrypoint.sh aktualisiert

This commit is contained in:
2025-01-16 16:05:48 +01:00
parent b94e9b2127
commit fb5cad9887

View File

@@ -1,3 +1,13 @@
#!/bin/sh
cleanup() {
exit 0
}
trap cleanup SIGTERM SIGINT
echo "Unraid Tailscale Sidecar started!"
read -r
while true; do
sleep 999999 &
wait $!
done