Merge pull request #620 from estesp/runinuserns-nonlinux

Stub RunningInUserNS for non-Linux
This commit is contained in:
Mrunal Patel 2016-03-04 07:17:38 -08:00
commit a55b03e85a
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
// +build !linux
package system
// RunningInUserNS is a stub for non-Linux systems
// Always returns false
func RunningInUserNS() bool {
return false
}