From 8500ce6b9ab0050b925ec3b899495cb2cc8d367f Mon Sep 17 00:00:00 2001 From: Brent Baude Date: Tue, 31 Mar 2020 12:59:08 -0500 Subject: podmanv2 load enable podman load for v2 add reexec into main add systemd build flag to v2 makefile Signed-off-by: Brent Baude --- pkg/domain/infra/tunnel/images.go | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'pkg/domain/infra/tunnel') diff --git a/pkg/domain/infra/tunnel/images.go b/pkg/domain/infra/tunnel/images.go index 6a8b9be37..a4a0fccaf 100644 --- a/pkg/domain/infra/tunnel/images.go +++ b/pkg/domain/infra/tunnel/images.go @@ -2,6 +2,7 @@ package tunnel import ( "context" + "os" "github.com/containers/image/v5/docker/reference" images "github.com/containers/libpod/pkg/bindings/images" @@ -157,3 +158,12 @@ func (ir *ImageEngine) Inspect(_ context.Context, names []string, opts entities. } return &report, nil } + +func (ir *ImageEngine) Load(ctx context.Context, opts entities.ImageLoadOptions) (*entities.ImageLoadReport, error) { + f, err := os.Open(opts.Input) + if err != nil { + return nil, err + } + defer f.Close() + return images.Load(ir.ClientCxt, f, &opts.Name) +} -- cgit v1.2.3-54-g00ecf