2022-09-01 18:51:23 +00:00
|
|
|
#!/bin/ash
|
|
|
|
trap 'kill -TERM $PID' TERM INT
|
|
|
|
echo "Starting Tailscale daemon"
|
|
|
|
# -state=mem: will logout and remove ephemeral node from network immediately after ending.
|
2023-12-28 19:25:49 +00:00
|
|
|
tailscaled --tun=userspace-networking --state=${TS_STATE_ARG} ${TS_OPT} &
|
2022-09-01 18:51:23 +00:00
|
|
|
PID=$!
|
2023-12-28 19:25:49 +00:00
|
|
|
until tailscale up --authkey="${TS_AUTH_KEY}" --hostname="${TS_HOSTNAME}"; do
|
|
|
|
sleep 0.1
|
2022-09-01 18:51:23 +00:00
|
|
|
done
|
|
|
|
tailscale status
|
2023-12-28 19:26:24 +00:00
|
|
|
if [ -n "${TS_SERVE_PORT}" ]; then
|
|
|
|
if ! tailscale serve status | grep -q "${TS_SERVE_PORT}"; then
|
|
|
|
tailscale serve --bg "${TS_SERVE_PORT}"
|
|
|
|
fi
|
|
|
|
fi
|
2022-09-01 18:51:23 +00:00
|
|
|
wait ${PID}
|