Merge pull request #620 from estesp/runinuserns-nonlinux
Stub RunningInUserNS for non-Linux
This commit is contained in:
commit
a55b03e85a
|
@ -0,0 +1,9 @@
|
|||
// +build !linux
|
||||
|
||||
package system
|
||||
|
||||
// RunningInUserNS is a stub for non-Linux systems
|
||||
// Always returns false
|
||||
func RunningInUserNS() bool {
|
||||
return false
|
||||
}
|
Loading…
Reference in New Issue