13 lines
151 B
Bash
13 lines
151 B
Bash
#!/bin/sh
|
|
cleanup() {
|
|
exit 0
|
|
}
|
|
|
|
trap cleanup SIGTERM SIGINT
|
|
|
|
echo "Unraid Tailscale Sidecar started!"
|
|
|
|
while true; do
|
|
sleep 999999 &
|
|
wait $!
|
|
done |