containerd/vendor/github.com/opencontainers/runc/libcontainer/system/unsupported.go
Mike Brown 100870abb2 godeps update
Signed-off-by: Mike Brown <brownwm@us.ibm.com>
2017-05-11 19:33:57 -05:00

10 lines
155 B
Go

// +build !linux
package system
// RunningInUserNS is a stub for non-Linux systems
// Always returns false
func RunningInUserNS() bool {
return false
}