1
0
mirror of https://github.com/rancher/os.git synced 2025-07-06 19:38:37 +00:00
os/vendor/github.com/opencontainers/runc/libcontainer/system/unsupported.go
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
}