summaryrefslogtreecommitdiff
path: root/cmd/podman/pod_inspect.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-02-22 21:12:49 +0100
committerGitHub <noreply@github.com>2019-02-22 21:12:49 +0100
commitc757cb23ca15634077a8b9fa33aba7abd1c8249b (patch)
treecf98450129274946d9a79d321755d76d115ee3ba /cmd/podman/pod_inspect.go
parent8039ccf4d560acbc308066cf8996bc4e6167a4a9 (diff)
parentbc6b4aa39c9156f31a5d370b19e91f42e0f14181 (diff)
downloadpodman-c757cb23ca15634077a8b9fa33aba7abd1c8249b.tar.gz
podman-c757cb23ca15634077a8b9fa33aba7abd1c8249b.tar.bz2
podman-c757cb23ca15634077a8b9fa33aba7abd1c8249b.zip
Merge pull request #2402 from baude/remotepodinspect
podman-remote pod inspect|exists
Diffstat (limited to 'cmd/podman/pod_inspect.go')
-rw-r--r--cmd/podman/pod_inspect.go7
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")
}