From 1e72de6b725b1be9319394270817a92bd0483727 Mon Sep 17 00:00:00 2001 From: Maisem Ali Date: Thu, 9 Mar 2023 11:16:30 -0800 Subject: [PATCH] ipn/ipnlocal: remove WIP restriction for Tailscale SSH on macOS It kinda works fine now on macOS with the recent fixes in 0582829 and 5787989d. Signed-off-by: Maisem Ali --- ipn/ipnlocal/local.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/ipn/ipnlocal/local.go b/ipn/ipnlocal/local.go index 574ee7cf7..abdcbc358 100644 --- a/ipn/ipnlocal/local.go +++ b/ipn/ipnlocal/local.go @@ -2536,9 +2536,6 @@ func (b *LocalBackend) checkSSHPrefsLocked(p *ipn.Prefs) error { if version.IsSandboxedMacOS() { return errors.New("The Tailscale SSH server does not run in sandboxed Tailscale GUI builds.") } - if !envknob.UseWIPCode() { - return errors.New("The Tailscale SSH server is disabled on macOS tailscaled by default. To try, set env TAILSCALE_USE_WIP_CODE=1") - } case "freebsd", "openbsd": default: return errors.New("The Tailscale SSH server is not supported on " + runtime.GOOS)