Fix specification of unix:///run

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
Daniel J Walsh 2023-09-17 07:37:03 -04:00
parent 7c05595e33
commit 03dd5f2568
No known key found for this signature in database
GPG Key ID: A2DF901DABE2C028
4 changed files with 19 additions and 19 deletions

View File

@ -24256,8 +24256,8 @@ msgstr ""
#: ../../source/markdown/podman-remote.1.md:56
msgid ""
"URL to access Podman service (default from `containers.conf`, rootless "
"\"unix://run/user/$UID/podman/podman.sock\" or as root "
"\"unix://run/podman/podman.sock)."
"\"unix:///run/user/$UID/podman/podman.sock\" or as root "
"\"unix:///run/podman/podman.sock)."
msgstr ""
#: ../../source/markdown/podman-remote.1.md:58
@ -24358,7 +24358,7 @@ msgstr ""
#: ../../source/markdown/podman-remote.1.md:77
#: ../../source/markdown/podman.1.md:203
msgid "`unix://run/podman/podman.sock`"
msgid "`unix:///run/podman/podman.sock`"
msgstr ""
#: ../../source/markdown/podman-remote.1.md:79
@ -24373,12 +24373,12 @@ msgstr ""
#: ../../source/markdown/podman-remote.1.md:82
#: ../../source/markdown/podman.1.md:208
msgid "unix://run/podman/podman.sock"
msgid "unix:///run/podman/podman.sock"
msgstr ""
#: ../../source/markdown/podman-remote.1.md:83
#: ../../source/markdown/podman.1.md:209
msgid "unix://run/user/$UID/podman/podman.sock"
msgid "unix:///run/user/$UID/podman/podman.sock"
msgstr ""
#: ../../source/markdown/podman-remote.1.md:84
@ -31567,8 +31567,8 @@ msgstr ""
#: ../../source/markdown/podman.1.md:183
msgid ""
"URL to access Podman service (default from `containers.conf`, rootless "
"`unix://run/user/$UID/podman/podman.sock` or as root "
"`unix://run/podman/podman.sock`). Setting this option switches the "
"`unix:///run/user/$UID/podman/podman.sock` or as root "
"`unix:///run/podman/podman.sock`). Setting this option switches the "
"**--remote** option to true."
msgstr ""

View File

@ -52,7 +52,7 @@ Log messages above specified level: debug, info, warn, error (default), fatal or
#### **--url**=*value*
URL to access Podman service (default from `containers.conf`, rootless "unix://run/user/$UID/podman/podman.sock" or as root "unix://run/podman/podman.sock).
URL to access Podman service (default from `containers.conf`, rootless "unix:///run/user/$UID/podman/podman.sock" or as root "unix:///run/podman/podman.sock).
- `CONTAINER_HOST` is of the format `<schema>://[<user[:<password>]@]<host>[:<port>][<path>]`
- `CONTAINER_PROXY` is of the format `<socks5|socks5h>://[<user[:<password>]@]<host>[:<port>]`
@ -73,13 +73,13 @@ URL value resolution precedence:
- command line value
- environment variable `CONTAINER_HOST`
- `engine.service_destinations` table in containers.conf, excluding the /usr/share/containers directory
- `unix://run/podman/podman.sock`
- `unix:///run/podman/podman.sock`
Remote connections use local containers.conf for default.
Some example URL values in valid formats:
- unix://run/podman/podman.sock
- unix://run/user/$UID/podman/podman.sock
- unix:///run/podman/podman.sock
- unix:///run/user/$UID/podman/podman.sock
- ssh://notroot@localhost:22/run/user/$UID/podman/podman.sock
- ssh://root@localhost:22/run/podman/podman.sock
- tcp://localhost:34451

View File

@ -179,7 +179,7 @@ it is not compatible with a traditional model where containers persist across re
Default value for this is configured in `containers-storage.conf(5)`.
#### **--url**=*value*
URL to access Podman service (default from `containers.conf`, rootless `unix://run/user/$UID/podman/podman.sock` or as root `unix://run/podman/podman.sock`).
URL to access Podman service (default from `containers.conf`, rootless `unix:///run/user/$UID/podman/podman.sock` or as root `unix:///run/podman/podman.sock`).
Setting this option switches the **--remote** option to true.
- `CONTAINER_HOST` is of the format `<schema>://[<user[:<password>]@]<host>[:<port>][<path>]`
@ -199,13 +199,13 @@ URL value resolution precedence:
- command line value
- environment variable `CONTAINER_HOST`
- `engine.service_destinations` table in containers.conf, excluding the /usr/share/containers directory
- `unix://run/podman/podman.sock`
- `unix:///run/podman/podman.sock`
Remote connections use local containers.conf for default.
Some example URL values in valid formats:
- unix://run/podman/podman.sock
- unix://run/user/$UID/podman/podman.sock
- unix:///run/podman/podman.sock
- unix:///run/user/$UID/podman/podman.sock
- ssh://notroot@localhost:22/run/user/$UID/podman/podman.sock
- ssh://root@localhost:22/run/podman/podman.sock
- tcp://localhost:34451

View File

@ -47,7 +47,7 @@ import (
)
func main() {
conn, err := bindings.NewConnection(context.Background(), "unix://run/podman/podman.sock")
conn, err := bindings.NewConnection(context.Background(), "unix:///run/podman/podman.sock")
if err != nil {
fmt.Println(err)
os.Exit(1)
@ -79,7 +79,7 @@ import (
)
func main() {
conn, err := bindings.NewConnection(context.Background(), "unix://run/podman/podman.sock")
conn, err := bindings.NewConnection(context.Background(), "unix:///run/podman/podman.sock")
if err != nil {
fmt.Println(err)
os.Exit(1)
@ -107,7 +107,7 @@ import (
)
func main() {
conn, err := bindings.NewConnection(context.Background(), "unix://run/podman/podman.sock")
conn, err := bindings.NewConnection(context.Background(), "unix:///run/podman/podman.sock")
if err != nil {
fmt.Println(err)
os.Exit(1)
@ -137,7 +137,7 @@ import (
)
func main() {
conn, err := bindings.NewConnection(context.Background(), "unix://run/podman/podman.sock")
conn, err := bindings.NewConnection(context.Background(), "unix:///run/podman/podman.sock")
if err != nil {
fmt.Println(err)
os.Exit(1)