diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-14 15:35:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-14 15:35:20 -0400 |
commit | 6076e1a9a53a785d0053d22f1859103d5fea8b56 (patch) | |
tree | 9901a7a5ac74c7a67763efd563fe07e08e08234f /pkg/specgen | |
parent | 53b984f20fef3a66269029f10c6cd16d7b80fd4e (diff) | |
parent | 3f2939c2ef6d9867862f597751c12b14c74440a3 (diff) | |
download | podman-6076e1a9a53a785d0053d22f1859103d5fea8b56.tar.gz podman-6076e1a9a53a785d0053d22f1859103d5fea8b56.tar.bz2 podman-6076e1a9a53a785d0053d22f1859103d5fea8b56.zip |
Merge pull request #13616 from giuseppe/passwd-entry
run, create: add --passwd-entry
Diffstat (limited to 'pkg/specgen')
-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 6a611e854..b85a87742 100644 --- a/pkg/specgen/generate/container_create.go +++ b/pkg/specgen/generate/container_create.go @@ -286,6 +286,9 @@ func createContainerOptions(ctx context.Context, rt *libpod.Runtime, s *specgen. if s.Volatile { options = append(options, libpod.WithVolatile()) } + if s.PasswdEntry != "" { + options = append(options, libpod.WithPasswdEntry(s.PasswdEntry)) + } useSystemd := false switch s.Systemd { diff --git a/pkg/specgen/specgen.go b/pkg/specgen/specgen.go index dfac1d457..79e20667b 100644 --- a/pkg/specgen/specgen.go +++ b/pkg/specgen/specgen.go @@ -206,6 +206,8 @@ type ContainerBasicConfig struct { UnsetEnvAll bool `json:"unsetenvall,omitempty"` // Passwd is a container run option that determines if we are validating users/groups before running the container Passwd *bool `json:"manage_password,omitempty"` + // PasswdEntry specifies arbitrary data to append to a file. + PasswdEntry string `json:"passwd_entry,omitempty"` } // ContainerStorageConfig contains information on the storage configuration of a |