Merge pull request #12664 from cdoern/noManagePasswd

Podman run --passwd
This commit is contained in:
OpenShift Merge Robot
2021-12-22 12:09:56 +01:00
committed by GitHub
14 changed files with 70 additions and 16 deletions

View File

@ -489,5 +489,8 @@ func createContainerOptions(ctx context.Context, rt *libpod.Runtime, s *specgen.
if s.PidFile != "" {
options = append(options, libpod.WithPidFile(s.PidFile))
}
options = append(options, libpod.WithSelectedPasswordManagement(s.Passwd))
return options, nil
}