rootless: do not overwrite err variable
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
parent
d7b2f03f8a
commit
a0313ef92b
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue