1
0
mirror of https://github.com/rancher/os.git synced 2025-09-01 06:40:31 +00:00
Files
os/vendor/github.com/opencontainers/runc/libcontainer/system/unsupported.go
Darren Shepherd 03db5d1058 Update vendor/
2016-06-06 08:08:00 -07: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
}