From 03dd5f25680bb58a8d84b04660a0719a9aa15649 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Sun, 17 Sep 2023 07:37:03 -0400 Subject: [PATCH] Fix specification of unix:///run Signed-off-by: Daniel J Walsh --- docs/source/locale/ja/LC_MESSAGES/markdown.po | 14 +++++++------- docs/source/markdown/podman-remote.1.md | 8 ++++---- docs/source/markdown/podman.1.md | 8 ++++---- pkg/bindings/README.md | 8 ++++---- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/docs/source/locale/ja/LC_MESSAGES/markdown.po b/docs/source/locale/ja/LC_MESSAGES/markdown.po index 17410e8030..e24d41068d 100644 --- a/docs/source/locale/ja/LC_MESSAGES/markdown.po +++ b/docs/source/locale/ja/LC_MESSAGES/markdown.po @@ -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 "" diff --git a/docs/source/markdown/podman-remote.1.md b/docs/source/markdown/podman-remote.1.md index 47ba222fb8..2dd94a037e 100644 --- a/docs/source/markdown/podman-remote.1.md +++ b/docs/source/markdown/podman-remote.1.md @@ -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 `://[]@][:][]` - `CONTAINER_PROXY` is of the format `://[]@][:]` @@ -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 diff --git a/docs/source/markdown/podman.1.md b/docs/source/markdown/podman.1.md index 4a2dbae854..1a23bcaafe 100644 --- a/docs/source/markdown/podman.1.md +++ b/docs/source/markdown/podman.1.md @@ -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 `://[]@][:][]` @@ -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 diff --git a/pkg/bindings/README.md b/pkg/bindings/README.md index a9b393324e..55255a22af 100644 --- a/pkg/bindings/README.md +++ b/pkg/bindings/README.md @@ -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)