diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-03-06 13:07:52 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-06 13:07:52 -0800 |
commit | 614409f64464db8022e9dc3bb0b84816ad287781 (patch) | |
tree | df258e444b7ed91a6817e679c3af00c93afb2a2e /cmd/podman/varlink/io.podman.varlink | |
parent | 02e2342d20a01c89236b4c2f2867e6acd8eda923 (diff) | |
parent | 8a6758d5fdaba9e6ec58eeb23ee5123762c18b72 (diff) | |
download | podman-614409f64464db8022e9dc3bb0b84816ad287781.tar.gz podman-614409f64464db8022e9dc3bb0b84816ad287781.tar.bz2 podman-614409f64464db8022e9dc3bb0b84816ad287781.zip |
Merge pull request #2534 from jwhonce/wip/remote_wait
Implement podman-remote wait command and container subcommand
Diffstat (limited to 'cmd/podman/varlink/io.podman.varlink')
-rw-r--r-- | cmd/podman/varlink/io.podman.varlink | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cmd/podman/varlink/io.podman.varlink b/cmd/podman/varlink/io.podman.varlink index a50b7dd13..6109bd290 100644 --- a/cmd/podman/varlink/io.podman.varlink +++ b/cmd/podman/varlink/io.podman.varlink @@ -621,10 +621,10 @@ method UnpauseContainer(name: string) -> (container: string) # ~~~ method GetAttachSockets(name: string) -> (sockets: Sockets) -# WaitContainer takes the name or ID of a container and waits until the container stops. Upon stopping, the return -# code of the container is returned. If the container container cannot be found by ID or name, -# a [ContainerNotFound](#ContainerNotFound) error is returned. -method WaitContainer(name: string) -> (exitcode: int) +# WaitContainer takes the name or ID of a container and waits the given interval in milliseconds until the container +# stops. Upon stopping, the return code of the container is returned. If the container container cannot be found by ID +# or name, a [ContainerNotFound](#ContainerNotFound) error is returned. +method WaitContainer(name: string, interval: int) -> (exitcode: int) # RemoveContainer requires the name or ID of container as well a boolean representing whether a running container can be stopped and removed, and a boolean # indicating whether to remove builtin volumes. Upon successful removal of the |