From 85ac82c386926345f42bebd4ae234f4975497823 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 18 Feb 2020 13:30:23 -0800 Subject: [PATCH] tailscaled: default to a sock in current dir, for development. Signed-off-by: David Anderson --- cmd/tailscaled/tailscaled.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tailscaled/tailscaled.go b/cmd/tailscaled/tailscaled.go index 917d05fcd..87d3be6e1 100644 --- a/cmd/tailscaled/tailscaled.go +++ b/cmd/tailscaled/tailscaled.go @@ -38,7 +38,7 @@ func main() { tunname := getopt.StringLong("tun", 0, "tailscale0", "tunnel interface name") listenport := getopt.Uint16Long("port", 'p', magicsock.DefaultPort, "WireGuard port (0=autoselect)") statepath := getopt.StringLong("state", 0, "", "Path of state file") - socketpath := getopt.StringLong("socket", 's', "/run/tailscale/tailscaled.sock", "Path of the service unix socket") + socketpath := getopt.StringLong("socket", 's', "tailscaled.sock", "Path of the service unix socket") logf := wgengine.RusagePrefixLog(log.Printf)