2
1
mirror of https://github.com/therootcompany/serviceman.git synced 2025-04-03 14:20:38 +00:00
serviceman/manager/whoami.go
2019-07-04 01:36:35 -06:00

16 lines
207 B
Go

// +build !windows
package manager
import "os/user"
func isPrivileged() bool {
u, err := user.Current()
if nil != err {
return false
}
// not quite, but close enough for now
return "0" == u.Uid
}