diff options
author | Paul Holzinger <pholzing@redhat.com> | 2022-07-22 14:16:25 +0200 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2022-07-26 14:39:39 -0400 |
commit | c4616510a2c7509be20120353e539804b161922d (patch) | |
tree | 07ef7ff907f589cce389acf8245f1c132a8e5b3e /pkg/api | |
parent | ce8b6cebdee31536d2f3506876202efac43d1a54 (diff) | |
download | podman-c4616510a2c7509be20120353e539804b161922d.tar.gz podman-c4616510a2c7509be20120353e539804b161922d.tar.bz2 podman-c4616510a2c7509be20120353e539804b161922d.zip |
API: libpod/create use correct default umask
Make sure containers created via API have the correct umask from
containers.conf set.
Fixes #15036
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'pkg/api')
-rw-r--r-- | pkg/api/handlers/libpod/containers_create.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/api/handlers/libpod/containers_create.go b/pkg/api/handlers/libpod/containers_create.go index e4964d602..1307c267a 100644 --- a/pkg/api/handlers/libpod/containers_create.go +++ b/pkg/api/handlers/libpod/containers_create.go @@ -31,6 +31,9 @@ func CreateContainer(w http.ResponseWriter, r *http.Request) { ContainerNetworkConfig: specgen.ContainerNetworkConfig{ UseImageHosts: conf.Containers.NoHosts, }, + ContainerSecurityConfig: specgen.ContainerSecurityConfig{ + Umask: conf.Containers.Umask, + }, } if err := json.NewDecoder(r.Body).Decode(&sg); err != nil { |