mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
abcb7ec1ce
Updates https://github.com/tailscale/corp/issues/12718 Signed-off-by: Tom DNetto <tom@tailscale.com>
15 lines
617 B
Go
15 lines
617 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
// Package healthmsg contains some constants for health messages.
|
|
//
|
|
// It's a leaf so both the server and CLI can depend on it without bringing too
|
|
// much in to the CLI binary.
|
|
package healthmsg
|
|
|
|
const (
|
|
WarnAcceptRoutesOff = "Some peers are advertising routes but --accept-routes is false"
|
|
TailscaleSSHOnBut = "Tailscale SSH enabled, but " // + ... something from caller
|
|
LockedOut = "this node is locked out; it will not have connectivity until it is signed. For more info, see https://tailscale.com/s/locked-out"
|
|
)
|