diff options
author | haircommander <pehunt@redhat.com> | 2018-07-20 13:28:19 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-07-27 14:20:08 +0000 |
commit | f258e43c7c4685102fbbf52303348f434ca8cb3e (patch) | |
tree | 6292f4d7ec86f70d0c85a9e9c6c6effaf4234a0e /cmd/podman/pod.go | |
parent | 50fea69fbc017fd0da160b083780d933aa5462b5 (diff) | |
download | podman-f258e43c7c4685102fbbf52303348f434ca8cb3e.tar.gz podman-f258e43c7c4685102fbbf52303348f434ca8cb3e.tar.bz2 podman-f258e43c7c4685102fbbf52303348f434ca8cb3e.zip |
Add pod pause/unpause
Added Pause() and Unpause() to libpod/pod.go
Added man pages, tests and completions
Signed-off-by: haircommander <pehunt@redhat.com>
Closes: #1126
Approved by: rhatdan
Diffstat (limited to 'cmd/podman/pod.go')
-rw-r--r-- | cmd/podman/pod.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/podman/pod.go b/cmd/podman/pod.go index 65bc9efda..ed79f0711 100644 --- a/cmd/podman/pod.go +++ b/cmd/podman/pod.go @@ -12,11 +12,13 @@ Pods are a group of one or more containers sharing the same network, pid and ipc podSubCommands = []cli.Command{ podCreateCommand, podKillCommand, + podPauseCommand, podPsCommand, podRestartCommand, podRmCommand, podStartCommand, podStopCommand, + podUnpauseCommand, } podCommand = cli.Command{ Name: "pod", |