From 2e0fef51b3928337ef46629b4627ff1700a918d1 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Wed, 8 May 2019 13:44:06 +0200 Subject: 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 --- libpod/runtime.go | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'libpod/runtime.go') diff --git a/libpod/runtime.go b/libpod/runtime.go index 18e9dfeb3..f9b34e315 100644 --- a/libpod/runtime.go +++ b/libpod/runtime.go @@ -966,18 +966,6 @@ func makeRuntime(ctx context.Context, runtime *Runtime) (err error) { runtime.valid = true if runtime.doMigrate { - if os.Geteuid() != 0 { - aliveLock.Unlock() - locked = false - - became, ret, err := rootless.BecomeRootInUserNS() - if err != nil { - return err - } - if became { - os.Exit(ret) - } - } if err := runtime.migrate(ctx); err != nil { return err } -- cgit v1.2.3-54-g00ecf