mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2026-05-21 05:16:29 +03:00
This is to allow access to the socket by members of the group that permissions are dropped to.
10 lines
251 B
Go
10 lines
251 B
Go
//go:build !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris
|
|
|
|
package main
|
|
|
|
import "errors"
|
|
|
|
func chuser(user, adminSockUrl string) error {
|
|
return errors.New("setting uid/gid is not supported on this platform")
|
|
}
|