all: cleanup unused code, part 1 (#10661)
Run `staticcheck` with `U1000` to find unused code. This cleans up about a half of it. I'll do the other half separately to keep PRs manageable. Updates #cleanup Signed-off-by: Andrew Lytvynov <awly@tailscale.com>main
parent
3c333f6341
commit
1302bd1181
@ -0,0 +1,34 @@ |
||||
// Copyright (c) Tailscale Inc & AUTHORS
|
||||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
package syspolicy |
||||
|
||||
var stringKeys = []Key{ |
||||
ControlURL, |
||||
LogTarget, |
||||
Tailnet, |
||||
ExitNodeID, |
||||
ExitNodeIP, |
||||
EnableIncomingConnections, |
||||
EnableServerMode, |
||||
ExitNodeAllowLANAccess, |
||||
EnableTailscaleDNS, |
||||
EnableTailscaleSubnets, |
||||
AdminConsoleVisibility, |
||||
NetworkDevicesVisibility, |
||||
TestMenuVisibility, |
||||
UpdateMenuVisibility, |
||||
RunExitNodeVisibility, |
||||
PreferencesMenuVisibility, |
||||
ExitNodeMenuVisibility, |
||||
AutoUpdateVisibility, |
||||
KeyExpirationNoticeTime, |
||||
PostureChecking, |
||||
} |
||||
|
||||
var boolKeys = []Key{ |
||||
LogSCMInteractions, |
||||
FlushDNSOnSessionUnlock, |
||||
} |
||||
|
||||
var uint64Keys = []Key{} |
||||
Loading…
Reference in new issue