mirror of
https://github.com/therootcompany/serviceman.git
synced 2025-04-03 14:20:38 +00:00
16 lines
207 B
Go
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
|
|
}
|