summaryrefslogtreecommitdiff
path: root/cmd/podman/trust_set_show.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-02-27 23:11:37 +0100
committerGitHub <noreply@github.com>2019-02-27 23:11:37 +0100
commit8d120bab839fccc7499353d4d6babdfc4ae3a82e (patch)
treeac6fb4bbb5e58245c4c65d815d2f15529c3affb9 /cmd/podman/trust_set_show.go
parent4e553cfd468c06ae45a88c51c57137dc4607ffe4 (diff)
parent2c0909bccc3648bf40be32232998a87b3a166f1d (diff)
downloadpodman-8d120bab839fccc7499353d4d6babdfc4ae3a82e.tar.gz
podman-8d120bab839fccc7499353d4d6babdfc4ae3a82e.tar.bz2
podman-8d120bab839fccc7499353d4d6babdfc4ae3a82e.zip
Merge pull request #2463 from edsantiago/missed_some_synopses
Followup to #2456: update examples, add trust
Diffstat (limited to 'cmd/podman/trust_set_show.go')
-rw-r--r--cmd/podman/trust_set_show.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/podman/trust_set_show.go b/cmd/podman/trust_set_show.go
index 0a4783d0a..746854249 100644
--- a/cmd/podman/trust_set_show.go
+++ b/cmd/podman/trust_set_show.go
@@ -23,7 +23,7 @@ var (
showTrustCommand cliconfig.ShowTrustValues
setTrustDescription = "Set default trust policy or add a new trust policy for a registry"
_setTrustCommand = &cobra.Command{
- Use: "set",
+ Use: "set [flags] REGISTRY",
Short: "Set default trust policy or a new trust policy for a registry",
Long: setTrustDescription,
Example: "",
@@ -36,7 +36,7 @@ var (
showTrustDescription = "Display trust policy for the system"
_showTrustCommand = &cobra.Command{
- Use: "show",
+ Use: "show [flags] [REGISTRY]",
Short: "Display trust policy for the system",
Long: showTrustDescription,
RunE: func(cmd *cobra.Command, args []string) error {