You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ipn/ipnlocal: use an in-memory TKA store if FS is unavailable
This requires making the internals of LocalBackend a bit more generic,
and implementing the `tka.CompactableChonk` interface for `tka.Mem`.
Signed-off-by: Alex Chan <alexc@tailscale.com>
Updates tailscale/corp#33599
(cherry picked from commit 1723cb8)
Copy file name to clipboardExpand all lines: health/healthmsg/healthmsg.go
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -8,9 +8,10 @@
8
8
package healthmsg
9
9
10
10
const (
11
-
WarnAcceptRoutesOff="Some peers are advertising routes but --accept-routes is false"
12
-
TailscaleSSHOnBut="Tailscale SSH enabled, but "// + ... something from caller
13
-
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"
14
-
WarnExitNodeUsage="The following issues on your machine will likely make usage of exit nodes impossible"
15
-
DisableRPFilter="Please set rp_filter=2 instead of rp_filter=1; see https://github.com/tailscale/tailscale/issues/3310"
11
+
WarnAcceptRoutesOff="Some peers are advertising routes but --accept-routes is false"
12
+
TailscaleSSHOnBut="Tailscale SSH enabled, but "// + ... something from caller
13
+
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"
14
+
WarnExitNodeUsage="The following issues on your machine will likely make usage of exit nodes impossible"
15
+
DisableRPFilter="Please set rp_filter=2 instead of rp_filter=1; see https://github.com/tailscale/tailscale/issues/3310"
16
+
InMemoryTailnetLockState="Tailnet Lock state is only being stored in-memory. Set --statedir to store state on disk, which is more secure. See https://tailscale.com/kb/1226/tailnet-lock#tailnet-lock-state"
0 commit comments