Ensure that runtimeArgs always get passed down to the oci runtime

Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
This commit is contained in:
Kenfe-Mickael Laventure 2016-03-29 10:26:37 -07:00
parent 5b0a213766
commit f07c5ac52a
2 changed files with 12 additions and 3 deletions

View file

@ -206,7 +206,11 @@ func (c *container) readSpec() (*specs.Spec, error) {
func (c *container) Delete() error {
err := os.RemoveAll(filepath.Join(c.root, c.id))
exec.Command(c.runtime, "delete", c.id).Run()
args := c.runtimeArgs
args = append(args, "delete", c.id)
exec.Command(c.runtime, args...).Run()
return err
}