summaryrefslogtreecommitdiff
path: root/pkg/util/utils_unsupported.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-06-02 20:51:13 +0200
committerGitHub <noreply@github.com>2020-06-02 20:51:13 +0200
commitc4ccd7cbc1509bab6183c47f740cbf2cc4ee0424 (patch)
treee93a98054a8cb3f956aaf94b96705371f80cbdcc /pkg/util/utils_unsupported.go
parent37ac21ff085b6e17adec3c0d9945524aa41029ae (diff)
parent77e4b077b9d8989b1300689103a5489bd1ad9a8b (diff)
downloadpodman-c4ccd7cbc1509bab6183c47f740cbf2cc4ee0424.tar.gz
podman-c4ccd7cbc1509bab6183c47f740cbf2cc4ee0424.tar.bz2
podman-c4ccd7cbc1509bab6183c47f740cbf2cc4ee0424.zip
Merge pull request #6435 from QiWang19/uid
check --user range for rootless containers
Diffstat (limited to 'pkg/util/utils_unsupported.go')
-rw-r--r--pkg/util/utils_unsupported.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/util/utils_unsupported.go b/pkg/util/utils_unsupported.go
index 62805d7c8..f8d5a37c1 100644
--- a/pkg/util/utils_unsupported.go
+++ b/pkg/util/utils_unsupported.go
@@ -10,3 +10,8 @@ import (
func FindDeviceNodes() (map[string]string, error) {
return nil, errors.Errorf("not supported on non-Linux OSes")
}
+
+// CheckRootlessUIDRange is not implemented anywhere except Linux.
+func CheckRootlessUIDRange(uid int) error {
+ return nil
+}