mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
1ef5bd5381
The Windows base registry key is already exported but the policy key was not. util/osdiag currently replicates the string rather than the preferred approach of reusing the constant. Updates #cleanup Change-Id: I6c1c45337896c744059b85643da2364fb3f232f2 Signed-off-by: Adrian Dewhurst <adrian@tailscale.com>
37 lines
912 B
Go
37 lines
912 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build !windows
|
|
|
|
package winutil
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"os/user"
|
|
"runtime"
|
|
)
|
|
|
|
const regBase = ``
|
|
const regPolicyBase = ``
|
|
|
|
var ErrNoValue = errors.New("no value because registry is unavailable on this OS")
|
|
|
|
func getPolicyString(name string) (string, error) { return "", ErrNoValue }
|
|
|
|
func getPolicyInteger(name string) (uint64, error) { return 0, ErrNoValue }
|
|
|
|
func getRegString(name string) (string, error) { return "", ErrNoValue }
|
|
|
|
func getRegInteger(name string) (uint64, error) { return 0, ErrNoValue }
|
|
|
|
func isSIDValidPrincipal(uid string) bool { return false }
|
|
|
|
func lookupPseudoUser(uid string) (*user.User, error) {
|
|
return nil, fmt.Errorf("unimplemented on %v", runtime.GOOS)
|
|
}
|
|
|
|
func IsCurrentProcessElevated() bool { return false }
|
|
|
|
func registerForRestart(opts RegisterForRestartOpts) error { return nil }
|