diff options
author | Brent Baude <bbaude@redhat.com> | 2020-04-06 13:59:02 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-04-07 07:15:09 -0500 |
commit | 013ecca8959f94cd97ee694676eeda6439ad38b7 (patch) | |
tree | 54c93cb14e3b2a8c384023f175e36a616f01398f /pkg/bindings/system | |
parent | c0e29b4a31e330927b7a980209b2aae192f9bafe (diff) | |
download | podman-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/bindings/system')
-rw-r--r-- | pkg/bindings/system/info.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pkg/bindings/system/info.go b/pkg/bindings/system/info.go index f8269cfd8..13e12645d 100644 --- a/pkg/bindings/system/info.go +++ b/pkg/bindings/system/info.go @@ -9,15 +9,15 @@ import ( ) // Info returns information about the libpod environment and its stores -func Info(ctx context.Context) (define.Info, error) { +func Info(ctx context.Context) (*define.Info, error) { info := define.Info{} conn, err := bindings.GetClient(ctx) if err != nil { - return info, err + return nil, err } response, err := conn.DoRequest(nil, http.MethodGet, "/info", nil) if err != nil { - return info, err + return nil, err } - return info, response.Process(&info) + return &info, response.Process(&info) } |