diff options
Diffstat (limited to 'libpod/runtime_migrate.go')
-rw-r--r-- | libpod/runtime_migrate.go | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/libpod/runtime_migrate.go b/libpod/runtime_migrate.go index 0bb8e952f..116885d3a 100644 --- a/libpod/runtime_migrate.go +++ b/libpod/runtime_migrate.go @@ -2,6 +2,7 @@ package libpod import ( "context" + "fmt" "path/filepath" "github.com/pkg/errors" @@ -21,7 +22,7 @@ func (r *Runtime) migrate(ctx context.Context) error { logrus.Infof("stopping all containers") for _, ctr := range runningContainers { - logrus.Infof("stopping %s", ctr.ID()) + fmt.Printf("stopped %s\n", ctr.ID()) if err := ctr.Stop(); err != nil { return errors.Wrapf(err, "cannot stop container %s", ctr.ID()) } @@ -38,11 +39,5 @@ func (r *Runtime) migrate(ctx context.Context) error { } } - for _, ctr := range runningContainers { - if err := ctr.Start(ctx, true); err != nil { - logrus.Errorf("error restarting container %s", ctr.ID()) - } - } - return nil } |