2023-01-27 21:37:20 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2022-11-11 17:43:49 +00:00
|
|
|
|
|
|
|
// 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
|
2023-06-28 21:36:01 +00:00
|
|
|
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"
|
2024-01-03 00:23:58 +00:00
|
|
|
WarnExitNodeUsage = "The following issues on your machine will likely make usage of exit nodes impossible"
|
2022-11-11 17:43:49 +00:00
|
|
|
)
|