diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-10-09 07:54:37 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2018-10-12 07:08:13 -0400 |
commit | 04a537756d9b7b526759c02b5b5d68c135b210ea (patch) | |
tree | 49e8a0e7610af0b6b752d28262ef78e98e0849b3 /pkg/chrootuser/user_basic.go | |
parent | da5c89497f9d6ee5cb6e826d7db7cca5686ab4f7 (diff) | |
download | podman-04a537756d9b7b526759c02b5b5d68c135b210ea.tar.gz podman-04a537756d9b7b526759c02b5b5d68c135b210ea.tar.bz2 podman-04a537756d9b7b526759c02b5b5d68c135b210ea.zip |
Generate a passwd file for users not in container
If someone runs podman as a user (uid) that is not defined in the container
we want generate a passwd file so that getpwuid() will work inside of container.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'pkg/chrootuser/user_basic.go')
-rw-r--r-- | pkg/chrootuser/user_basic.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/chrootuser/user_basic.go b/pkg/chrootuser/user_basic.go index 4ed7918e9..79b0b24b5 100644 --- a/pkg/chrootuser/user_basic.go +++ b/pkg/chrootuser/user_basic.go @@ -21,3 +21,7 @@ func lookupGroupForUIDInContainer(rootdir string, userid uint64) (string, uint64 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") +} |