summaryrefslogtreecommitdiff
path: root/pkg/domain/infra/abi
diff options
context:
space:
mode:
authorPaul Holzinger <paul.holzinger@web.de>2021-01-19 23:03:51 +0100
committerPaul Holzinger <paul.holzinger@web.de>2021-01-21 19:18:51 +0100
commit9d31fed5f75186f618e95ab7492ef6bc2b511d5f (patch)
tree11215b0dd70351b4157fd19a17c65d4fcfca77ed /pkg/domain/infra/abi
parent7d024a2fc8c675e4d34e3b34b56b6217a48ef9ce (diff)
downloadpodman-9d31fed5f75186f618e95ab7492ef6bc2b511d5f.tar.gz
podman-9d31fed5f75186f618e95ab7492ef6bc2b511d5f.tar.bz2
podman-9d31fed5f75186f618e95ab7492ef6bc2b511d5f.zip
podman volume exists
Add podman volume exists command with remote support. Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
Diffstat (limited to 'pkg/domain/infra/abi')
-rw-r--r--pkg/domain/infra/abi/volumes.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkg/domain/infra/abi/volumes.go b/pkg/domain/infra/abi/volumes.go
index 823605052..f15aa2d14 100644
--- a/pkg/domain/infra/abi/volumes.go
+++ b/pkg/domain/infra/abi/volumes.go
@@ -153,3 +153,12 @@ func (ic *ContainerEngine) VolumeList(ctx context.Context, opts entities.VolumeL
}
return reports, nil
}
+
+// VolumeExists check if a given volume name exists
+func (ic *ContainerEngine) VolumeExists(ctx context.Context, nameOrID string) (*entities.BoolReport, error) {
+ exists, err := ic.Libpod.HasVolume(nameOrID)
+ if err != nil {
+ return nil, err
+ }
+ return &entities.BoolReport{Value: exists}, nil
+}