aboutsummaryrefslogtreecommitdiff
path: root/libpod/container_config.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-04-14 15:35:20 -0400
committerGitHub <noreply@github.com>2022-04-14 15:35:20 -0400
commit6076e1a9a53a785d0053d22f1859103d5fea8b56 (patch)
tree9901a7a5ac74c7a67763efd563fe07e08e08234f /libpod/container_config.go
parent53b984f20fef3a66269029f10c6cd16d7b80fd4e (diff)
parent3f2939c2ef6d9867862f597751c12b14c74440a3 (diff)
downloadpodman-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 'libpod/container_config.go')
-rw-r--r--libpod/container_config.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/libpod/container_config.go b/libpod/container_config.go
index ea644764c..8500c6db9 100644
--- a/libpod/container_config.go
+++ b/libpod/container_config.go
@@ -404,6 +404,8 @@ type ContainerMiscConfig struct {
// InitContainerType specifies if the container is an initcontainer
// and if so, what type: always or once are possible non-nil entries
InitContainerType string `json:"init_container_type,omitempty"`
+ // PasswdEntry specifies arbitrary data to append to a file.
+ PasswdEntry string `json:"passwd_entry,omitempty"`
}
// InfraInherit contains the compatible options inheritable from the infra container