mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 03:25:35 +00:00
909f40da84
Now that we have 30faf968b1
this is no longer needed.
Fixes #3001
Signed-off-by: Maisem Ali <maisem@tailscale.com>
35 lines
784 B
Go
35 lines
784 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.
|
|
|
|
// Package groupmember verifies group membership of the provided user on the
|
|
// local system.
|
|
package groupmember
|
|
|
|
import (
|
|
"os/user"
|
|
)
|
|
|
|
// IsMemberOfGroup reports whether the provided user is a member of
|
|
// the provided system group.
|
|
func IsMemberOfGroup(group, userName string) (bool, error) {
|
|
u, err := user.Lookup(userName)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
ugids, err := u.GroupIds()
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
g, err := user.LookupGroup(group)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
for _, ugid := range ugids {
|
|
if g.Gid == ugid {
|
|
return true, nil
|
|
}
|
|
}
|
|
return false, nil
|
|
}
|