2014-07-31 20:40:15 +00:00
|
|
|
package daemon
|
|
|
|
|
2015-04-12 00:41:16 +02:00
|
|
|
import "fmt"
|
2015-03-25 08:44:12 +01:00
|
|
|
|
2015-07-30 14:01:53 -07:00
|
|
|
// ContainerStop looks for the given container and terminates it,
|
|
|
|
// waiting the given number of seconds before forcefully killing the
|
|
|
|
// container. If a negative number of seconds is given, ContainerStop
|
|
|
|
// will wait for a graceful termination. An error is returned if the
|
|
|
|
// container is not found, is already stopped, or if there is a
|
|
|
|
// problem stopping the container.
|
2015-04-12 00:41:16 +02:00
|
|
|
func (daemon *Daemon) ContainerStop(name string, seconds int) error {
|
2014-12-16 15:06:35 -08:00
|
|
|
container, err := daemon.Get(name)
|
|
|
|
if err != nil {
|
2015-03-25 08:44:12 +01:00
|
|
|
return err
|
2014-07-31 20:40:15 +00:00
|
|
|
}
|
2014-12-16 15:06:35 -08:00
|
|
|
if !container.IsRunning() {
|
2015-03-25 08:44:12 +01:00
|
|
|
return fmt.Errorf("Container already stopped")
|
2014-12-16 15:06:35 -08:00
|
|
|
}
|
2015-04-12 00:41:16 +02:00
|
|
|
if err := container.Stop(seconds); err != nil {
|
2015-03-25 08:44:12 +01:00
|
|
|
return fmt.Errorf("Cannot stop container %s: %s\n", name, err)
|
2014-12-16 15:06:35 -08:00
|
|
|
}
|
2015-03-25 08:44:12 +01:00
|
|
|
return nil
|
2014-07-31 20:40:15 +00:00
|
|
|
}
|