From 225c7ae6c98300fc8d9536fa31c0ae9f8231c5c0 Mon Sep 17 00:00:00 2001 From: Adrian Reber Date: Wed, 4 Dec 2019 15:06:51 +0000 Subject: Correctly export the root file-system changes When doing a checkpoint with --export the root file-system diff was not working as expected. Instead of getting the changes from the running container to the highest storage layer it got the changes from the highest layer to that parent's layer. For a one layer container this could mean that the complete root file-system is part of the checkpoint. With this commit this changes to use the same functionality as 'podman diff'. This actually enables to correctly diff the root file-system including tracking deleted files. This also removes the non-working helper functions from libpod/diff.go. Signed-off-by: Adrian Reber --- pkg/adapter/checkpoint_restore.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg') diff --git a/pkg/adapter/checkpoint_restore.go b/pkg/adapter/checkpoint_restore.go index 15f9e8105..7f80b782a 100644 --- a/pkg/adapter/checkpoint_restore.go +++ b/pkg/adapter/checkpoint_restore.go @@ -60,6 +60,7 @@ func crImportCheckpoint(ctx context.Context, runtime *libpod.Runtime, input stri "ctr.log", "rootfs-diff.tar", "network.status", + "deleted.files", }, } dir, err := ioutil.TempDir("", "checkpoint") -- cgit v1.2.3-54-g00ecf