diff options
author | baude <bbaude@redhat.com> | 2019-02-21 15:12:04 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-02-22 11:08:04 -0600 |
commit | bc6b4aa39c9156f31a5d370b19e91f42e0f14181 (patch) | |
tree | 04300664a1b58b4a8d24681efb6db36560282a80 /cmd/podman/pod_inspect.go | |
parent | b4c10790d514538277a937a443219e4310cb057f (diff) | |
download | podman-bc6b4aa39c9156f31a5d370b19e91f42e0f14181.tar.gz podman-bc6b4aa39c9156f31a5d370b19e91f42e0f14181.tar.bz2 podman-bc6b4aa39c9156f31a5d370b19e91f42e0f14181.zip |
podman-remote pod inspect|exists
enable the remote client to be able to inspect a pod. also, bonus of
enabling the podman pod exists command which returns a 0 or 1 depending
on whether the given pod exists.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/pod_inspect.go')
-rw-r--r-- | cmd/podman/pod_inspect.go | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/cmd/podman/pod_inspect.go b/cmd/podman/pod_inspect.go index 58b15328e..f7731fc61 100644 --- a/cmd/podman/pod_inspect.go +++ b/cmd/podman/pod_inspect.go @@ -5,8 +5,7 @@ import ( "fmt" "github.com/containers/libpod/cmd/podman/cliconfig" - "github.com/containers/libpod/cmd/podman/libpodruntime" - "github.com/containers/libpod/libpod" + "github.com/containers/libpod/libpod/adapter" "github.com/pkg/errors" "github.com/spf13/cobra" ) @@ -37,13 +36,13 @@ func init() { func podInspectCmd(c *cliconfig.PodInspectValues) error { var ( - pod *libpod.Pod + pod *adapter.Pod ) if err := checkMutuallyExclusiveFlags(&c.PodmanCommand); err != nil { return err } args := c.InputArgs - runtime, err := libpodruntime.GetRuntime(&c.PodmanCommand) + runtime, err := adapter.GetRuntime(&c.PodmanCommand) if err != nil { return errors.Wrapf(err, "could not get runtime") } |