summaryrefslogtreecommitdiff
path: root/pkg/domain/infra/tunnel/system.go
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-04-06 13:59:02 -0500
committerBrent Baude <bbaude@redhat.com>2020-04-07 07:15:09 -0500
commit013ecca8959f94cd97ee694676eeda6439ad38b7 (patch)
tree54c93cb14e3b2a8c384023f175e36a616f01398f /pkg/domain/infra/tunnel/system.go
parentc0e29b4a31e330927b7a980209b2aae192f9bafe (diff)
downloadpodman-013ecca8959f94cd97ee694676eeda6439ad38b7.tar.gz
podman-013ecca8959f94cd97ee694676eeda6439ad38b7.tar.bz2
podman-013ecca8959f94cd97ee694676eeda6439ad38b7.zip
podmanv2 info
add ability to run info for v2 Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/domain/infra/tunnel/system.go')
-rw-r--r--pkg/domain/infra/tunnel/system.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkg/domain/infra/tunnel/system.go b/pkg/domain/infra/tunnel/system.go
index 5bafef1fe..5d6346234 100644
--- a/pkg/domain/infra/tunnel/system.go
+++ b/pkg/domain/infra/tunnel/system.go
@@ -1 +1,12 @@
package tunnel
+
+import (
+ "context"
+
+ "github.com/containers/libpod/libpod/define"
+ "github.com/containers/libpod/pkg/bindings/system"
+)
+
+func (ic *ContainerEngine) Info(ctx context.Context) (*define.Info, error) {
+ return system.Info(ic.ClientCxt)
+}