diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-07-22 05:40:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-22 05:40:32 -0400 |
commit | 59bad8bf7176398dbab6b59867b17567691ffda3 (patch) | |
tree | c2516dae009b868a21b3d81bd7711228d09a7f60 /pkg | |
parent | 2643967bc04ee3ab9f8c204bb5a4258588d03ad9 (diff) | |
parent | d4d3fbc155419f4017064a65e718ad78d50115cc (diff) | |
download | podman-59bad8bf7176398dbab6b59867b17567691ffda3.tar.gz podman-59bad8bf7176398dbab6b59867b17567691ffda3.tar.bz2 podman-59bad8bf7176398dbab6b59867b17567691ffda3.zip |
Merge pull request #7006 from ashley-cui/umask
Add --umask flag for create, run
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/specgen/generate/container_create.go | 3 | ||||
-rw-r--r-- | pkg/specgen/specgen.go | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/pkg/specgen/generate/container_create.go b/pkg/specgen/generate/container_create.go index 6dbc45c16..934d5fbac 100644 --- a/pkg/specgen/generate/container_create.go +++ b/pkg/specgen/generate/container_create.go @@ -145,6 +145,9 @@ func createContainerOptions(ctx context.Context, rt *libpod.Runtime, s *specgen. if s.Timezone != "" { options = append(options, libpod.WithTimezone(s.Timezone)) } + if s.Umask != "" { + options = append(options, libpod.WithUmask(s.Umask)) + } useSystemd := false switch s.Systemd { diff --git a/pkg/specgen/specgen.go b/pkg/specgen/specgen.go index c6079be33..84a6c36a0 100644 --- a/pkg/specgen/specgen.go +++ b/pkg/specgen/specgen.go @@ -287,6 +287,8 @@ type ContainerSecurityConfig struct { // ReadOnlyFilesystem indicates that everything will be mounted // as read-only ReadOnlyFilesystem bool `json:"read_only_filesystem,omittempty"` + // Umask is the umask the init process of the container will be run with. + Umask string `json:"umask,omitempty"` } // ContainerCgroupConfig contains configuration information about a container's |