summaryrefslogtreecommitdiff
path: root/libpod/adapter/images_remote.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2019-02-22 11:07:18 -0600
committerbaude <bbaude@redhat.com>2019-02-22 17:00:24 -0600
commit4bf973a9f61eae3b02925a42ccfa784baeb917dc (patch)
tree60e9ea8473b2f33c39e46f3954e3e4201a63dc63 /libpod/adapter/images_remote.go
parentc00bf28f24e2eed435c156cd1aabe59c10fe9824 (diff)
downloadpodman-4bf973a9f61eae3b02925a42ccfa784baeb917dc.tar.gz
podman-4bf973a9f61eae3b02925a42ccfa784baeb917dc.tar.bz2
podman-4bf973a9f61eae3b02925a42ccfa784baeb917dc.zip
Enable more podman-remote pod commands
enable pod start, stop, and kill subcommands for the remote-client. Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'libpod/adapter/images_remote.go')
-rw-r--r--libpod/adapter/images_remote.go24
1 files changed, 0 insertions, 24 deletions
diff --git a/libpod/adapter/images_remote.go b/libpod/adapter/images_remote.go
deleted file mode 100644
index e7b38dccc..000000000
--- a/libpod/adapter/images_remote.go
+++ /dev/null
@@ -1,24 +0,0 @@
-// +build remoteclient
-
-package adapter
-
-import (
- "context"
- "encoding/json"
-
- iopodman "github.com/containers/libpod/cmd/podman/varlink"
- "github.com/containers/libpod/pkg/inspect"
-)
-
-// Inspect returns returns an ImageData struct from over a varlink connection
-func (i *ContainerImage) Inspect(ctx context.Context) (*inspect.ImageData, error) {
- reply, err := iopodman.InspectImage().Call(i.Runtime.Conn, i.ID())
- if err != nil {
- return nil, err
- }
- data := inspect.ImageData{}
- if err := json.Unmarshal([]byte(reply), &data); err != nil {
- return nil, err
- }
- return &data, nil
-}