rootless: do not overwrite err variable

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
Giuseppe Scrivano
2021-07-27 12:34:07 +02:00
parent d7b2f03f8a
commit a0313ef92b

View File

@ -119,8 +119,8 @@ func (ic *ContainerEngine) SetupRootless(_ context.Context, cmd *cobra.Command)
became, ret, err = rootless.TryJoinFromFilePaths(pausePidPath, true, paths)
if err := movePauseProcessToScope(ic.Libpod); err != nil {
conf, err := ic.Config(context.Background())
if err != nil {
conf, err2 := ic.Config(context.Background())
if err2 != nil {
return err
}
if conf.Engine.CgroupManager == config.SystemdCgroupsManager {