summaryrefslogtreecommitdiff
path: root/libpod/runtime_migrate.go
diff options
context:
space:
mode:
authorGiuseppe Scrivano <gscrivan@redhat.com>2019-05-08 13:44:06 +0200
committerGiuseppe Scrivano <gscrivan@redhat.com>2019-05-17 20:47:55 +0200
commit2e0fef51b3928337ef46629b4627ff1700a918d1 (patch)
tree07a4084eb20ef794df5aa14d4a7914e8e21ef412 /libpod/runtime_migrate.go
parent144244aeed673957692bc6cf36c933e4b2d93a80 (diff)
downloadpodman-2e0fef51b3928337ef46629b4627ff1700a918d1.tar.gz
podman-2e0fef51b3928337ef46629b4627ff1700a918d1.tar.bz2
podman-2e0fef51b3928337ef46629b4627ff1700a918d1.zip
migrate: not create a new namespace
this leaves the containers stopped but we won't risk to use the wrong user namespace. Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'libpod/runtime_migrate.go')
-rw-r--r--libpod/runtime_migrate.go9
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
}