Move some calls to container.LogEvent down lower so that there's less of a chance of them being missed. Also add a few more events that appear to have been missed. Added testcases for new events: commit, copy, resize, attach, rename, top Signed-off-by: Doug Davis <dug@us.ibm.com> Upstream-commit: 8232312c1e705753d3db82dca3d9bb23e59c3b52 Component: engine
18 lines
320 B
Go
18 lines
320 B
Go
package daemon
|
|
|
|
import "fmt"
|
|
|
|
// ContainerPause pauses a container
|
|
func (daemon *Daemon) ContainerPause(name string) error {
|
|
container, err := daemon.Get(name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := container.Pause(); err != nil {
|
|
return fmt.Errorf("Cannot pause container %s: %s", name, err)
|
|
}
|
|
|
|
return nil
|
|
}
|