mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 08:44:07 +01:00
06860c4c10
This PR adds support for SSH access through the NetBird network without managing SSH skeys. NetBird client app has an embedded SSH server (Linux/Mac only) and a netbird ssh command.
13 lines
255 B
Go
13 lines
255 B
Go
package util
|
|
|
|
import "golang.zx2c4.com/wireguard/windows/elevate"
|
|
|
|
// IsAdmin returns true if user has admin privileges
|
|
func IsAdmin() bool {
|
|
adminDesktop, err := elevate.IsAdminDesktop()
|
|
if err == nil && adminDesktop {
|
|
return true
|
|
}
|
|
return false
|
|
}
|