From eed0e66710c02b9f3e40505cc6be65ef66de9c0e Mon Sep 17 00:00:00 2001 From: Hironori Shiina Date: Wed, 8 Jun 2022 17:40:44 -0400 Subject: Pass '--file-locks' to OCI runtime at restoring `podman container restore --file-locks` does not restore file locks because this option is not passed to OCI runtime. This patch fixes this issue. Signed-off-by: Hironori Shiina --- pkg/domain/infra/abi/containers.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/domain/infra/abi') diff --git a/pkg/domain/infra/abi/containers.go b/pkg/domain/infra/abi/containers.go index d2fafccb1..8bd84a310 100644 --- a/pkg/domain/infra/abi/containers.go +++ b/pkg/domain/infra/abi/containers.go @@ -616,6 +616,7 @@ func (ic *ContainerEngine) ContainerRestore(ctx context.Context, namesOrIds []st ImportPrevious: options.ImportPrevious, Pod: options.Pod, PrintStats: options.PrintStats, + FileLocks: options.FileLocks, } filterFuncs := []libpod.ContainerFilter{ -- cgit v1.2.3-54-g00ecf