diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2022-03-21 16:43:14 +0100 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2022-04-14 11:22:13 +0200 |
commit | 3f2939c2ef6d9867862f597751c12b14c74440a3 (patch) | |
tree | 4033f1a48052c0ab001a213c0ce8d54af6fab8da /cmd/podman/common/create.go | |
parent | 15712c76fb198cec7509ff0cf401e357401d2d7d (diff) | |
download | podman-3f2939c2ef6d9867862f597751c12b14c74440a3.tar.gz podman-3f2939c2ef6d9867862f597751c12b14c74440a3.tar.bz2 podman-3f2939c2ef6d9867862f597751c12b14c74440a3.zip |
run, create: add --passwd-entry
It allows to customize the entry that is written to the `/etc/passwd`
file when --passwd is used.
Closes: https://github.com/containers/podman/issues/13185
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'cmd/podman/common/create.go')
-rw-r--r-- | cmd/podman/common/create.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/podman/common/create.go b/cmd/podman/common/create.go index 8a3f02036..309bbda59 100644 --- a/cmd/podman/common/create.go +++ b/cmd/podman/common/create.go @@ -630,6 +630,10 @@ func DefineCreateFlags(cmd *cobra.Command, cf *entities.ContainerCreateOptions, ) _ = cmd.RegisterFlagCompletionFunc(chrootDirsFlagName, completion.AutocompleteDefault) + passwdEntryName := "passwd-entry" + createFlags.StringVar(&cf.PasswdEntry, passwdEntryName, "", "Entry to write to /etc/passwd") + _ = cmd.RegisterFlagCompletionFunc(passwdEntryName, completion.AutocompleteNone) + if registry.IsRemote() { _ = createFlags.MarkHidden("env-host") _ = createFlags.MarkHidden("http-proxy") |