summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2020-09-23 09:57:38 +0200
committerMatthew Heon <mheon@redhat.com>2020-09-25 11:17:24 -0400
commit5de9b2b5120780c47fcc15e48796c7656563dda7 (patch)
tree6876c80ff39439cf85849fd47ba7d4263da1e670 /pkg
parent8cae9b56f7888baeee5f45df09d65ff48b0b2c42 (diff)
downloadpodman-5de9b2b5120780c47fcc15e48796c7656563dda7.tar.gz
podman-5de9b2b5120780c47fcc15e48796c7656563dda7.tar.bz2
podman-5de9b2b5120780c47fcc15e48796c7656563dda7.zip
remote load: check if input is directory
The remote client does not support loading directories yet. To prevent confusing error messages and to make the behaviour more explicit, check if the input points to a directory and throw an error if needed. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg')
-rw-r--r--pkg/domain/infra/tunnel/images.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkg/domain/infra/tunnel/images.go b/pkg/domain/infra/tunnel/images.go
index 332a7c2eb..981884109 100644
--- a/pkg/domain/infra/tunnel/images.go
+++ b/pkg/domain/infra/tunnel/images.go
@@ -199,6 +199,13 @@ func (ir *ImageEngine) Load(ctx context.Context, opts entities.ImageLoadOptions)
return nil, err
}
defer f.Close()
+ fInfo, err := f.Stat()
+ if err != nil {
+ return nil, err
+ }
+ if fInfo.IsDir() {
+ return nil, errors.Errorf("remote client supports archives only but %q is a directory", opts.Input)
+ }
ref := opts.Name
if len(opts.Tag) > 0 {
ref += ":" + opts.Tag