shorten env var names

This commit is contained in:
John Bowdre 2023-12-28 13:25:49 -06:00
parent c6f8d75b5e
commit fdd8ef5456

View file

@ -2,10 +2,10 @@
trap 'kill -TERM $PID' TERM INT
echo "Starting Tailscale daemon"
# -state=mem: will logout and remove ephemeral node from network immediately after ending.
tailscaled --tun=userspace-networking --state=${TAILSCALE_STATE_ARG} ${TAILSCALE_OPT} &
tailscaled --tun=userspace-networking --state=${TS_STATE_ARG} ${TS_OPT} &
PID=$!
until tailscale up --authkey="${TAILSCALE_AUTH_KEY}" --hostname="${TAILSCALE_HOSTNAME}"; do
sleep 0.1
until tailscale up --authkey="${TS_AUTH_KEY}" --hostname="${TS_HOSTNAME}"; do
sleep 0.1
done
tailscale status
wait ${PID}