mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-12 09:46:25 +08:00
8f97d39dd2
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
22 lines
380 B
Go
22 lines
380 B
Go
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris
|
|
|
|
package user
|
|
|
|
import "io"
|
|
|
|
func GetPasswdPath() (string, error) {
|
|
return "", ErrUnsupported
|
|
}
|
|
|
|
func GetPasswd() (io.ReadCloser, error) {
|
|
return nil, ErrUnsupported
|
|
}
|
|
|
|
func GetGroupPath() (string, error) {
|
|
return "", ErrUnsupported
|
|
}
|
|
|
|
func GetGroup() (io.ReadCloser, error) {
|
|
return nil, ErrUnsupported
|
|
}
|