1
0
mirror of https://github.com/rancher/rke.git synced 2025-08-29 19:53:12 +00:00
rke/vendor/github.com/opencontainers/runc/libcontainer/system/unsupported.go
Sebastiaan van Steenis 1b24d67a21 vendor update
2020-08-14 18:43:49 +02: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
}