summaryrefslogtreecommitdiff
path: root/cmd/podman/wait.go
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-04-16 12:25:26 -0500
committerBrent Baude <bbaude@redhat.com>2020-04-16 15:53:58 -0500
commit241326a9a8c20ad7f2bcf651416b836e7778e090 (patch)
tree4001e8e47a022bb1b9bfbf2332c42e1aeb802f9e /cmd/podman/wait.go
parent88c6fd06cd54fb9a8826306dfdf1a77e400de5de (diff)
downloadpodman-241326a9a8c20ad7f2bcf651416b836e7778e090.tar.gz
podman-241326a9a8c20ad7f2bcf651416b836e7778e090.tar.bz2
podman-241326a9a8c20ad7f2bcf651416b836e7778e090.zip
Podman V2 birth
remote podman v1 and replace with podman v2. Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/wait.go')
-rw-r--r--cmd/podman/wait.go65
1 files changed, 0 insertions, 65 deletions
diff --git a/cmd/podman/wait.go b/cmd/podman/wait.go
deleted file mode 100644
index d6a707bb8..000000000
--- a/cmd/podman/wait.go
+++ /dev/null
@@ -1,65 +0,0 @@
-package main
-
-import (
- "time"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- waitCommand cliconfig.WaitValues
-
- waitDescription = `Block until one or more containers stop and then print their exit codes.
-`
- _waitCommand = &cobra.Command{
- Use: "wait [flags] CONTAINER [CONTAINER...]",
- Short: "Block on one or more containers",
- Long: waitDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- waitCommand.InputArgs = args
- waitCommand.GlobalFlags = MainGlobalOpts
- waitCommand.Remote = remoteclient
- return waitCmd(&waitCommand)
- },
- Example: `podman wait --latest
- podman wait --interval 5000 ctrID
- podman wait ctrID1 ctrID2`,
- }
-)
-
-func init() {
- waitCommand.Command = _waitCommand
- waitCommand.SetHelpTemplate(HelpTemplate())
- waitCommand.SetUsageTemplate(UsageTemplate())
- flags := waitCommand.Flags()
- flags.UintVarP(&waitCommand.Interval, "interval", "i", 250, "Milliseconds to wait before polling for completion")
- flags.BoolVarP(&waitCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func waitCmd(c *cliconfig.WaitValues) error {
- args := c.InputArgs
- if len(args) < 1 && !c.Latest {
- return errors.Errorf("you must provide at least one container name or id")
- }
-
- if c.Interval == 0 {
- return errors.Errorf("interval must be greater then 0")
- }
- interval := time.Duration(c.Interval) * time.Millisecond
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- ok, failures, err := runtime.WaitOnContainers(getContext(), c, interval)
- if err != nil {
- return err
- }
- return printCmdResults(ok, failures)
-}