mirror of
https://github.com/tailscale/tailscale.git
synced 2025-01-05 14:57:49 +00:00
cmd/tailscale/cli: disallow --ssh on Synology
Updates tailscale/corp#5468 Updates #3802 Signed-off-by: Maisem Ali <maisem@tailscale.com>
This commit is contained in:
parent
a9b4bf1535
commit
03e3e6abcd
@ -440,7 +440,10 @@ 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\" " + notSupported)
|
||||
return errors.New("--netfilter-mode values besides \"off\" are " + notSupported)
|
||||
}
|
||||
if upArgs.runSSH {
|
||||
return errors.New("--ssh is " + notSupported)
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user