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 /libpod/options.go | |
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 'libpod/options.go')
-rw-r--r-- | libpod/options.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libpod/options.go b/libpod/options.go index 2e5454393..6c4b4cc42 100644 --- a/libpod/options.go +++ b/libpod/options.go @@ -2051,3 +2051,16 @@ func WithChrootDirs(dirs []string) CtrCreateOption { return nil } } + +// WithPasswdEntry sets the entry to write to the /etc/passwd file. +func WithPasswdEntry(passwdEntry string) CtrCreateOption { + return func(ctr *Container) error { + if ctr.valid { + return define.ErrCtrFinalized + } + + ctr.config.PasswdEntry = passwdEntry + + return nil + } +} |