summaryrefslogtreecommitdiff
path: root/cmd/podman/pods/stop.go
diff options
context:
space:
mode:
authorUrvashi Mohnani <umohnani@redhat.com>2022-05-25 16:50:16 -0400
committerUrvashi Mohnani <umohnani@redhat.com>2022-05-26 11:12:40 -0400
commit426a07e7008f539825abe74484296cfaf4399ad8 (patch)
tree5e735bd7fd41637c14ceacd6959eff8ddc3a262b /cmd/podman/pods/stop.go
parente11feb230923a169c1e235552afa2f7bec7f0fff (diff)
downloadpodman-426a07e7008f539825abe74484296cfaf4399ad8.tar.gz
podman-426a07e7008f539825abe74484296cfaf4399ad8.tar.bz2
podman-426a07e7008f539825abe74484296cfaf4399ad8.zip
Combine the CheckAllLatest CID and PodID functions
These two functions were doing the exact same thing just with cidfile and pod-id-file separately. Combine the functionality to one function to remove repetative code. Fix the TODO in cmd/podman/validate/args.go [NO NEW TESTS NEEDED] Signed-off-by: Urvashi Mohnani <umohnani@redhat.com>
Diffstat (limited to 'cmd/podman/pods/stop.go')
-rw-r--r--cmd/podman/pods/stop.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/pods/stop.go b/cmd/podman/pods/stop.go
index c8c3d2732..e8f82bee9 100644
--- a/cmd/podman/pods/stop.go
+++ b/cmd/podman/pods/stop.go
@@ -36,7 +36,7 @@ var (
Long: podStopDescription,
RunE: stop,
Args: func(cmd *cobra.Command, args []string) error {
- return validate.CheckAllLatestAndPodIDFile(cmd, args, false, true)
+ return validate.CheckAllLatestAndIDFile(cmd, args, false, "pod-id-file")
},
ValidArgsFunction: common.AutocompletePodsRunning,
Example: `podman pod stop mywebserverpod