mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
23880eb5b0
Some environments would like to remove Tailscale SSH support for the binary for various reasons when not needed (either for peace of mind, or the ~1MB of binary space savings). Updates tailscale/corp#24454 Updates #1278 Updates #12614 Change-Id: Iadd6c5a393992c254b5dc9aa9a526916f96fd07a Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
10 lines
254 B
Go
10 lines
254 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build (linux || darwin || freebsd || openbsd) && !ts_omit_ssh
|
|
|
|
package main
|
|
|
|
// Force registration of tailssh with LocalBackend.
|
|
import _ "tailscale.com/ssh/tailssh"
|