diff options
author | Brent Baude <bbaude@redhat.com> | 2020-08-04 13:26:06 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-08-10 12:05:39 -0500 |
commit | cd74f66bad464f03353321184466da61032b78a5 (patch) | |
tree | dfbd7521bd943096a52cd4db1c5593440034a671 /cmd/podman/root.go | |
parent | 68fd9aa2cf67a749258ccdc6fa8fd89c2557ebfc (diff) | |
download | podman-cd74f66bad464f03353321184466da61032b78a5.tar.gz podman-cd74f66bad464f03353321184466da61032b78a5.tar.bz2 podman-cd74f66bad464f03353321184466da61032b78a5.zip |
remove --latest for all remote commands
instead of hiding the latest options for podman-remote or catching an error if podman --remote <cmd> -l is used, we no longer add the latest option to any remote command. podman will error with a "unknown flag" option.
Fixes: #7127
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/root.go')
-rw-r--r-- | cmd/podman/root.go | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/cmd/podman/root.go b/cmd/podman/root.go index 9e9011dc9..2aa7267c2 100644 --- a/cmd/podman/root.go +++ b/cmd/podman/root.go @@ -6,7 +6,6 @@ import ( "path" "runtime" "runtime/pprof" - "strconv" "strings" "github.com/containers/common/pkg/config" @@ -112,15 +111,6 @@ func persistentPreRunE(cmd *cobra.Command, args []string) error { cfg := registry.PodmanConfig() - // Validate --remote and --latest not given on same command - latest := cmd.Flags().Lookup("latest") - if latest != nil { - value, _ := strconv.ParseBool(latest.Value.String()) - if cfg.Remote && value { - return errors.Errorf("For %s \"--remote\" and \"--latest\", are mutually exclusive flags", cmd.CommandPath()) - } - } - // Prep the engines if _, err := registry.NewImageEngine(cmd, args); err != nil { return err |