diff options
author | baude <bbaude@redhat.com> | 2018-08-02 08:58:59 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-08-06 14:49:11 +0000 |
commit | bd9d3a8fa5843dca49a4903d66f603f678ed0fa5 (patch) | |
tree | d5122665394c94133530e0cbc3ee783fb0441839 /docs | |
parent | ee89bc46eb4d27176977174d08893188b13228b7 (diff) | |
download | podman-bd9d3a8fa5843dca49a4903d66f603f678ed0fa5.tar.gz podman-bd9d3a8fa5843dca49a4903d66f603f678ed0fa5.tar.bz2 podman-bd9d3a8fa5843dca49a4903d66f603f678ed0fa5.zip |
Rename varlink socket and interface
io.projectatomic.podman -> io.podman
Signed-off-by: baude <bbaude@redhat.com>
Closes: #1204
Approved by: mheon
Diffstat (limited to 'docs')
-rw-r--r-- | docs/generate.go | 2 | ||||
-rw-r--r-- | docs/podman-varlink.1.md | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/generate.go b/docs/generate.go index 405d8c83f..9ab370e2c 100644 --- a/docs/generate.go +++ b/docs/generate.go @@ -1,3 +1,3 @@ package docs -//go:generate go run varlink/apidoc.go ../cmd/podman/varlink/io.projectatomic.podman.varlink ../API.md +//go:generate go run varlink/apidoc.go ../cmd/podman/varlink/io.podman.varlink ../API.md diff --git a/docs/podman-varlink.1.md b/docs/podman-varlink.1.md index d53457e22..cd57e8b45 100644 --- a/docs/podman-varlink.1.md +++ b/docs/podman-varlink.1.md @@ -26,24 +26,24 @@ second. A value of `0` means no timeout and the session will not expire. Run the podman varlink service manually and accept the default timeout. ``` -# podman varlink unix:/run/podman/io.projectatomic.podman +$ podman varlink unix:/run/podman/io.podman ``` Run the podman varlink service manually with a 5 second timeout. ``` -# podman varlink --timeout 5000 unix:/run/podman/io.projectatomic.podman +$ podman varlink --timeout 5000 unix:/run/podman/io.podman ``` ## CONFIGURATION -Users of the podman varlink service should enable the _io.projectatomic.podman.socket_ and _io.projectatomic.podman.service_. +Users of the podman varlink service should enable the _io.podman.socket_ and _io.podman.service_. This is the preferred method for running the varlink service. You can do this via systemctl. ``` -# systemctl enable --now io.projectatomic.podman.socket +systemctl enable --now io.podman.socket ``` ## SEE ALSO |