mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
009d2835cf
Add a stub for non-Linux that always returns false Docker-DCO-1.1-Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com> (github: estesp)
10 lines
155 B
Go
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
|
|
}
|