summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2021-08-26 13:15:23 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2021-08-27 06:14:46 -0400
commit84694170402ff699065382ba2d2fb172c3b6c88f (patch)
treeb7ff7565a879901bd2b888b80e2419898e1a6a17 /cmd
parent94c37d7d470871f9d63b32c97094f5faab1e8a08 (diff)
downloadpodman-84694170402ff699065382ba2d2fb172c3b6c88f.tar.gz
podman-84694170402ff699065382ba2d2fb172c3b6c88f.tar.bz2
podman-84694170402ff699065382ba2d2fb172c3b6c88f.zip
Globally replace http:// with https://
[NO TESTS NEEDED] Hopefully existing tests will find issues. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/images/import.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/podman/images/import.go b/cmd/podman/images/import.go
index bc80417cc..d4bc0f610 100644
--- a/cmd/podman/images/import.go
+++ b/cmd/podman/images/import.go
@@ -30,7 +30,7 @@ var (
RunE: importCon,
Args: cobra.RangeArgs(1, 2),
ValidArgsFunction: common.AutocompleteDefaultOneArg,
- Example: `podman import http://example.com/ctr.tar url-image
+ Example: `podman import https://example.com/ctr.tar url-image
cat ctr.tar | podman -q import --message "importing the ctr.tar tarball" - image-imported
cat ctr.tar | podman import -`,
}
@@ -42,7 +42,7 @@ var (
RunE: importCommand.RunE,
Args: importCommand.Args,
ValidArgsFunction: importCommand.ValidArgsFunction,
- Example: `podman image import http://example.com/ctr.tar url-image
+ Example: `podman image import https://example.com/ctr.tar url-image
cat ctr.tar | podman -q image import --message "importing the ctr.tar tarball" - image-imported
cat ctr.tar | podman image import -`,
}