summaryrefslogtreecommitdiff
path: root/libpod/define
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-06-03 14:52:01 -0500
committerBrent Baude <bbaude@redhat.com>2020-06-03 15:20:37 -0500
commitd023909c0be103f1b02f2ddac0b937fff2d4e4f0 (patch)
tree52073a9a6bef47b47f7cf30afca1f73e0b3a8e20 /libpod/define
parentbba0a8be1a715fb0903ffc69abd5700a624d47e4 (diff)
downloadpodman-d023909c0be103f1b02f2ddac0b937fff2d4e4f0.tar.gz
podman-d023909c0be103f1b02f2ddac0b937fff2d4e4f0.tar.bz2
podman-d023909c0be103f1b02f2ddac0b937fff2d4e4f0.zip
add socket information to podman info
this is step 1 to self-discovery of remote ssh connections. we add a remotesocket struct to info to detect what the socket path might be. Co-authored-by: Jhon Honce <jhonce@redhat.com> Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'libpod/define')
-rw-r--r--libpod/define/info.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/libpod/define/info.go b/libpod/define/info.go
index 906aa523f..f136936f7 100644
--- a/libpod/define/info.go
+++ b/libpod/define/info.go
@@ -27,6 +27,7 @@ type HostInfo struct {
MemTotal int64 `json:"memTotal"`
OCIRuntime *OCIRuntimeInfo `json:"ociRuntime"`
OS string `json:"os"`
+ RemoteSocket *RemoteSocket `json:"remoteSocket,omitempty"`
Rootless bool `json:"rootless"`
RuntimeInfo map[string]interface{} `json:"runtimeInfo,omitempty"`
Slirp4NetNS SlirpInfo `json:"slirp4netns,omitempty"`
@@ -36,6 +37,12 @@ type HostInfo struct {
Linkmode string `json:"linkmode"`
}
+// RemoteSocket describes information about the API socket
+type RemoteSocket struct {
+ Path string `json:"path,omitempty"`
+ Exists bool `json:"exists,omitempty"`
+}
+
// SlirpInfo describes the slirp exectuable that
// is being being used.
type SlirpInfo struct {