summaryrefslogtreecommitdiff
path: root/cmd/podman/pod_stop.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2019-02-20 13:46:41 -0600
committerbaude <bbaude@redhat.com>2019-02-22 14:13:08 -0600
commit328250e7bef56b0b69dbea124c1170abd289900f (patch)
tree03a9d601d3f3ce0ac0d04fc3b2841b970031ed48 /cmd/podman/pod_stop.go
parent8039ccf4d560acbc308066cf8996bc4e6167a4a9 (diff)
downloadpodman-328250e7bef56b0b69dbea124c1170abd289900f.tar.gz
podman-328250e7bef56b0b69dbea124c1170abd289900f.tar.bz2
podman-328250e7bef56b0b69dbea124c1170abd289900f.zip
Improve command line validation
Use the checkallandlatest function to validate flag usage as part of the cobra command args validation. Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/pod_stop.go')
-rw-r--r--cmd/podman/pod_stop.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/cmd/podman/pod_stop.go b/cmd/podman/pod_stop.go
index a9237347e..a3816b1e1 100644
--- a/cmd/podman/pod_stop.go
+++ b/cmd/podman/pod_stop.go
@@ -27,6 +27,9 @@ var (
podStopCommand.GlobalFlags = MainGlobalOpts
return podStopCmd(&podStopCommand)
},
+ Args: func(cmd *cobra.Command, args []string) error {
+ return checkAllAndLatest(cmd, args, false)
+ },
Example: `podman pod stop mywebserverpod
podman pod stop --latest
podman pod stop --timeout 0 490eb 3557fb`,
@@ -44,10 +47,6 @@ func init() {
func podStopCmd(c *cliconfig.PodStopValues) error {
timeout := -1
- if err := checkMutuallyExclusiveFlags(&c.PodmanCommand); err != nil {
- return err
- }
-
runtime, err := libpodruntime.GetRuntime(&c.PodmanCommand)
if err != nil {
return errors.Wrapf(err, "could not get runtime")