diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-03-28 07:19:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-28 07:19:34 -0700 |
commit | ef1b58e6f28d21959196d29d5e9ab065d4e9a818 (patch) | |
tree | 691ecc024dfedff5695e426a8f3a6c077cfc34b8 /pkg/chrootuser/user_basic.go | |
parent | e7a2eecf5f3975edfb92cd2cacff0d34ef45f808 (diff) | |
parent | a5443a532b0fc6bd787cbb472c0ad2f75447c9df (diff) | |
download | podman-ef1b58e6f28d21959196d29d5e9ab065d4e9a818.tar.gz podman-ef1b58e6f28d21959196d29d5e9ab065d4e9a818.tar.bz2 podman-ef1b58e6f28d21959196d29d5e9ab065d4e9a818.zip |
Merge pull request #2789 from vrothberg/vendor
vendor buildah, image, storage, cni
Diffstat (limited to 'pkg/chrootuser/user_basic.go')
-rw-r--r-- | pkg/chrootuser/user_basic.go | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/pkg/chrootuser/user_basic.go b/pkg/chrootuser/user_basic.go deleted file mode 100644 index 79b0b24b5..000000000 --- a/pkg/chrootuser/user_basic.go +++ /dev/null @@ -1,27 +0,0 @@ -// +build !linux - -package chrootuser - -import ( - "github.com/pkg/errors" -) - -func lookupUserInContainer(rootdir, username string) (uint64, uint64, error) { - return 0, 0, errors.New("user lookup not supported") -} - -func lookupGroupInContainer(rootdir, groupname string) (uint64, error) { - return 0, errors.New("group lookup not supported") -} - -func lookupGroupForUIDInContainer(rootdir string, userid uint64) (string, uint64, error) { - return "", 0, errors.New("primary group lookup by uid not supported") -} - -func lookupAdditionalGroupsForUIDInContainer(rootdir string, userid uint64) (gid []uint32, err error) { - return nil, errors.New("supplemental groups list lookup by uid not supported") -} - -func lookupUIDInContainer(rootdir string, uid uint64) (string, uint64, error) { - return "", 0, errors.New("UID lookup not supported") -} |