blob: e4067a764d86953dc0af4e7398db0d34825c0839 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// +build !linux
package rootless
import (
"github.com/pkg/errors"
)
// IsRootless returns false on all non-linux platforms
func IsRootless() bool {
return false
}
// BecomeRootInUserNS is a stub function that always returns false and an
// error on unsupported OS's
func BecomeRootInUserNS() (bool, error) {
return false, errors.New("this function is not supported on this os")
}
|