summaryrefslogtreecommitdiff
path: root/pkg/domain/infra/abi
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/abi
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/abi')
-rw-r--r--pkg/domain/infra/abi/system.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkg/domain/infra/abi/system.go b/pkg/domain/infra/abi/system.go
new file mode 100644
index 000000000..8aaa69847
--- /dev/null
+++ b/pkg/domain/infra/abi/system.go
@@ -0,0 +1,13 @@
+// +build ABISupport
+
+package abi
+
+import (
+ "context"
+
+ "github.com/containers/libpod/libpod/define"
+)
+
+func (ic *ContainerEngine) Info(ctx context.Context) (*define.Info, error) {
+ return ic.Libpod.Info()
+}