From e939d931cde01004e7130e7638b899832141b4e0 Mon Sep 17 00:00:00 2001 From: Gerard Braad Date: Tue, 8 Oct 2024 15:22:27 +0800 Subject: [PATCH] Update tailscaled script add default socket for the vscode tailscale extension --- scripts/tailscaled | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tailscaled b/scripts/tailscaled index 006419a..11271b5 100755 --- a/scripts/tailscaled +++ b/scripts/tailscaled @@ -10,7 +10,7 @@ case "$1" in start) echo "Starting Tailscale VPN" tailscaled --state=/var/lib/tailscale/tailscaled.state \ - --socket=/run/tailscale/tailscaled.sock \ + --socket=/var/run/tailscale/tailscaled.sock \ --port 41641 \ 2>/dev/null & tailscale up --authkey=${TAILSCALE_AUTHKEY} \