runsc: do not delete in paused state.

PiperOrigin-RevId: 211835570
Change-Id: Ied7933732cad5bc60b762e9c964986cb49a8d9b9
This commit is contained in:
Lantao Liu
2018-09-06 11:06:19 -07:00
committed by Shentubot
parent efac28976c
commit 4f3053cb4e
+2 -2
View File
@@ -76,8 +76,8 @@ func (d *Delete) execute(ids []string, conf *boot.Config) error {
}
return fmt.Errorf("error loading container %q: %v", id, err)
}
if !d.force && (c.Status == container.Running) {
return fmt.Errorf("cannot stop running container without --force flag")
if !d.force && c.Status != container.Created && c.Status != container.Stopped {
return fmt.Errorf("cannot delete container that is not stopped without --force flag")
}
if err := c.Destroy(); err != nil {
return fmt.Errorf("error destroying container: %v", err)