diff options
-rw-r--r-- | runsc/cmd/delete.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runsc/cmd/delete.go b/runsc/cmd/delete.go index 46de5f348..92b609c3c 100644 --- a/runsc/cmd/delete.go +++ b/runsc/cmd/delete.go @@ -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) |