mirror of
https://github.com/tailscale/tailscale.git
synced 2024-12-11 02:34:43 +00:00
d9144c73a8
Goal: one way for users to update Tailscale, downgrade, switch tracks, regardless of platform (Windows, most Linux distros, macOS, Synology). This is a start. Updates #755, etc Change-Id: I23466da1ba41b45f0029ca79a17f5796c2eedd92 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
32 lines
787 B
Go
32 lines
787 B
Go
// Copyright (c) 2021 Tailscale Inc & AUTHORS All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build !windows
|
|
|
|
package winutil
|
|
|
|
import (
|
|
"fmt"
|
|
"os/user"
|
|
"runtime"
|
|
)
|
|
|
|
const regBase = ``
|
|
|
|
func getPolicyString(name, defval string) string { return defval }
|
|
|
|
func getPolicyInteger(name string, defval uint64) uint64 { return defval }
|
|
|
|
func getRegString(name, defval string) string { return defval }
|
|
|
|
func getRegInteger(name string, defval uint64) uint64 { return defval }
|
|
|
|
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 }
|