diff options
author | baude <bbaude@redhat.com> | 2018-10-29 13:53:39 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2018-11-01 14:23:55 -0500 |
commit | b559c19c2fa739cf1c8ede50eab8f5acf74f6bf3 (patch) | |
tree | b4d63dfa9418edf29dbbac4b00ae397e93632299 /docs/podman-kill.1.md | |
parent | 732a4c814e575ead4b39f00097f22b2f3b64bfc0 (diff) | |
download | podman-b559c19c2fa739cf1c8ede50eab8f5acf74f6bf3.tar.gz podman-b559c19c2fa739cf1c8ede50eab8f5acf74f6bf3.tar.bz2 podman-b559c19c2fa739cf1c8ede50eab8f5acf74f6bf3.zip |
Make kill, pause, and unpause parallel.
Operations like kill, pause, and unpause -- which can operation on one or
more containers -- can greatly benefit from parallizing its main job (eq kill).
In the case of pauseand unpause, an --all option as was added. pause --all will
pause all **running** containers. And unpause --all will unpause all **paused**
containers.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'docs/podman-kill.1.md')
-rw-r--r-- | docs/podman-kill.1.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/podman-kill.1.md b/docs/podman-kill.1.md index 14066d151..85f68a73d 100644 --- a/docs/podman-kill.1.md +++ b/docs/podman-kill.1.md @@ -4,7 +4,7 @@ podman\-kill - Kills one or more containers with a signal ## SYNOPSIS -**podman kill** [*options*] *container* ... +**podman kill** [*options*] [*container* ...] ## DESCRIPTION The main process inside each container specified will be sent SIGKILL, or any signal specified with option --signal. |