mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
8d056423f8
* Events subsystem merged from `server/events.go` and `utils/jsonmessagepublisher.go` and moved to `events/events.go` * Only public interface for this subsystem is engine jobs * There is two new engine jobs - `log_event` and `subscribers_count` * There is auxiliary function `container.LogEvent` for logging events for containers Docker-DCO-1.1-Signed-off-by: Alexandr Morozov <lk4d4math@gmail.com> (github: LK4D4) [solomon@docker.com: resolve merge conflicts] Signed-off-by: Solomon Hykes <solomon@docker.com>
27 lines
617 B
Go
27 lines
617 B
Go
package daemon
|
|
|
|
import (
|
|
"github.com/docker/docker/engine"
|
|
)
|
|
|
|
func (daemon *Daemon) ContainerRestart(job *engine.Job) engine.Status {
|
|
if len(job.Args) != 1 {
|
|
return job.Errorf("Usage: %s CONTAINER\n", job.Name)
|
|
}
|
|
var (
|
|
name = job.Args[0]
|
|
t = 10
|
|
)
|
|
if job.EnvExists("t") {
|
|
t = job.GetenvInt("t")
|
|
}
|
|
if container := daemon.Get(name); container != nil {
|
|
if err := container.Restart(int(t)); err != nil {
|
|
return job.Errorf("Cannot restart container %s: %s\n", name, err)
|
|
}
|
|
container.LogEvent("restart")
|
|
} else {
|
|
return job.Errorf("No such container: %s\n", name)
|
|
}
|
|
return engine.StatusOK
|
|
}
|