Files
yggdrasil-go/cmd/yggdrasil/chuser_other.go
state-plumber aaf263957b Change ownership of admin socket before dropping permissions (#1336)
This is to allow access to the socket by members of the group that
permissions are dropped to.
2026-05-12 21:39:55 +01:00

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")
}