diff options
author | Brent Baude <bbaude@redhat.com> | 2020-06-03 14:52:01 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-06-03 15:20:37 -0500 |
commit | d023909c0be103f1b02f2ddac0b937fff2d4e4f0 (patch) | |
tree | 52073a9a6bef47b47f7cf30afca1f73e0b3a8e20 /docs/source/markdown | |
parent | bba0a8be1a715fb0903ffc69abd5700a624d47e4 (diff) | |
download | podman-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 'docs/source/markdown')
-rw-r--r-- | docs/source/markdown/podman-info.1.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/source/markdown/podman-info.1.md b/docs/source/markdown/podman-info.1.md index 24ab97c91..19dd61c15 100644 --- a/docs/source/markdown/podman-info.1.md +++ b/docs/source/markdown/podman-info.1.md @@ -71,6 +71,9 @@ host: commit: 3e425f80a8c931f88e6d94a8c831b9d5aa481657 spec: 1.0.1-dev os: linux + remoteSocket: + exists: false + path: /run/user/1000/podman/podman.sock rootless: true slirp4netns: executable: /bin/slirp4netns @@ -179,6 +182,10 @@ Run podman info with JSON formatted response: "version": "runc version 1.0.0-rc8+dev\ncommit: 3e425f80a8c931f88e6d94a8c831b9d5aa481657\nspec: 1.0.1-dev" }, "os": "linux", + "remoteSocket": { + "path": "/run/user/1000/podman/podman.sock", + "exists": false + }, "rootless": true, "slirp4netns": { "executable": "/bin/slirp4netns", |