From 2bac8b6013398decedb73f0a86cc698adbef5b21 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Fri, 3 Jun 2022 13:46:58 -0700 Subject: [PATCH] Revert "cmd/tailscale/cli: disallow --ssh on Synology" This reverts commit 03e3e6abcd39239eca710144e329d5e8ef935a2d in favor of #4785. Change-Id: Ied65914106917c4cb8d15d6ad5e093a6299d1d48 Signed-off-by: Brad Fitzpatrick --- cmd/tailscale/cli/up.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/cmd/tailscale/cli/up.go b/cmd/tailscale/cli/up.go index 8833b0a5f..8f9f93516 100644 --- a/cmd/tailscale/cli/up.go +++ b/cmd/tailscale/cli/up.go @@ -440,10 +440,7 @@ func runUp(ctx context.Context, args []string) error { return errors.New("--exit-node is " + notSupported) } if upArgs.netfilterMode != "off" { - return errors.New("--netfilter-mode values besides \"off\" are " + notSupported) - } - if upArgs.runSSH { - return errors.New("--ssh is " + notSupported) + return errors.New("--netfilter-mode values besides \"off\" " + notSupported) } }