2016-04-13 05:41:09 +08:00
|
|
|
// +build !solaris
|
|
|
|
|
2016-01-12 08:57:18 +08:00
|
|
|
package main
|
|
|
|
|
2016-03-29 04:27:28 +08:00
|
|
|
import (
|
2016-05-26 02:24:26 +08:00
|
|
|
"fmt"
|
2016-03-29 04:27:28 +08:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2016-05-28 04:13:11 +08:00
|
|
|
"syscall"
|
|
|
|
"time"
|
2016-03-29 04:27:28 +08:00
|
|
|
|
|
|
|
"github.com/opencontainers/runc/libcontainer"
|
2016-06-07 02:45:46 +08:00
|
|
|
"github.com/urfave/cli"
|
2016-03-29 04:27:28 +08:00
|
|
|
)
|
2016-01-12 08:57:18 +08:00
|
|
|
|
2016-06-29 06:21:42 +08:00
|
|
|
func killContainer(container libcontainer.Container) error {
|
|
|
|
container.Signal(syscall.SIGKILL)
|
|
|
|
for i := 0; i < 100; i++ {
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
if err := container.Signal(syscall.Signal(0)); err != nil {
|
|
|
|
destroy(container)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fmt.Errorf("container init still running")
|
|
|
|
}
|
|
|
|
|
2016-01-12 08:57:18 +08:00
|
|
|
var deleteCommand = cli.Command{
|
|
|
|
Name: "delete",
|
2016-09-18 11:44:17 +08:00
|
|
|
Usage: "delete any resources held by one container or more containers often used with detached containers",
|
|
|
|
ArgsUsage: `container-id [container-id...]
|
2016-02-11 01:30:06 +08:00
|
|
|
|
|
|
|
Where "<container-id>" is the name for the instance of the container.
|
2016-05-24 16:59:24 +08:00
|
|
|
|
|
|
|
EXAMPLE:
|
2016-02-11 01:30:06 +08:00
|
|
|
For example, if the container id is "ubuntu01" and runc list currently shows the
|
2016-05-26 02:24:26 +08:00
|
|
|
status of "ubuntu01" as "stopped" the following will delete resources held for
|
2016-06-29 06:21:42 +08:00
|
|
|
"ubuntu01" removing "ubuntu01" from the runc list of containers:
|
|
|
|
|
2016-02-11 01:30:06 +08:00
|
|
|
# runc delete ubuntu01`,
|
2016-06-29 06:21:42 +08:00
|
|
|
Flags: []cli.Flag{
|
|
|
|
cli.BoolFlag{
|
|
|
|
Name: "force, f",
|
|
|
|
Usage: "Forcibly kills the container if it is still running",
|
|
|
|
},
|
|
|
|
},
|
2016-05-10 13:58:09 +08:00
|
|
|
Action: func(context *cli.Context) error {
|
2016-09-18 11:44:17 +08:00
|
|
|
if !context.Args().Present() {
|
|
|
|
return fmt.Errorf("runc: \"delete\" requires a minimum of 1 argument")
|
2016-01-12 08:57:18 +08:00
|
|
|
}
|
2016-09-18 11:44:17 +08:00
|
|
|
|
|
|
|
factory, err := loadFactory(context)
|
2016-05-26 02:24:26 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-09-18 11:44:17 +08:00
|
|
|
for _, id := range context.Args() {
|
|
|
|
container, err := factory.Load(id)
|
|
|
|
if err != nil {
|
|
|
|
if lerr, ok := err.(libcontainer.Error); ok && lerr.Code() == libcontainer.ContainerNotExists {
|
|
|
|
// if there was an aborted start or something of the sort then the container's directory could exist but
|
|
|
|
// libcontainer does not see it because the state.json file inside that directory was never created.
|
|
|
|
path := filepath.Join(context.GlobalString("root"), id)
|
|
|
|
if err := os.RemoveAll(path); err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "remove %s: %v\n", path, err)
|
|
|
|
}
|
|
|
|
fmt.Fprintf(os.Stderr, "container %s is not exist\n", id)
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
s, err := container.Status()
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "status for %s: %v\n", id, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
switch s {
|
|
|
|
case libcontainer.Stopped:
|
|
|
|
destroy(container)
|
|
|
|
case libcontainer.Created:
|
|
|
|
err := killContainer(container)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "kill container %s: %v\n", id, err)
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
if context.Bool("force") {
|
|
|
|
err := killContainer(container)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "kill container %s: %v\n", id, err)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fmt.Fprintf(os.Stderr, "cannot delete container %s that is not stopped: %s\n", id, s)
|
|
|
|
}
|
2016-06-29 06:21:42 +08:00
|
|
|
}
|
2016-05-17 08:04:49 +08:00
|
|
|
}
|
2016-05-10 13:58:09 +08:00
|
|
|
return nil
|
2016-01-12 08:57:18 +08:00
|
|
|
},
|
|
|
|
}
|