aboutsummaryrefslogtreecommitdiff
path: root/cmd/podman/cleanup.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2018-06-22 16:44:59 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-06-29 15:25:21 +0000
commit7fc1a329bd014d61f9895fc212aef452f6fb8f84 (patch)
tree9b67a2f36197369d487dd80927124e2dcb7056b8 /cmd/podman/cleanup.go
parent41bd607c120dbd8b315eb30feb0fe63e079c821d (diff)
downloadpodman-7fc1a329bd014d61f9895fc212aef452f6fb8f84.tar.gz
podman-7fc1a329bd014d61f9895fc212aef452f6fb8f84.tar.bz2
podman-7fc1a329bd014d61f9895fc212aef452f6fb8f84.zip
Add `podman container cleanup` to CLI
When we run containers in detach mode, nothing cleans up the network stack or the mount points. This patch will tell conmon to execute the cleanup code when the container exits. It can also be called to attempt to cleanup previously running containers. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Closes: #942 Approved by: mheon
Diffstat (limited to 'cmd/podman/cleanup.go')
-rw-r--r--cmd/podman/cleanup.go92
1 files changed, 92 insertions, 0 deletions
diff --git a/cmd/podman/cleanup.go b/cmd/podman/cleanup.go
new file mode 100644
index 000000000..33b0fad45
--- /dev/null
+++ b/cmd/podman/cleanup.go
@@ -0,0 +1,92 @@
+package main
+
+import (
+ "fmt"
+ "os"
+
+ "github.com/pkg/errors"
+ "github.com/projectatomic/libpod/cmd/podman/libpodruntime"
+ "github.com/projectatomic/libpod/libpod"
+ "github.com/urfave/cli"
+)
+
+var (
+ cleanupFlags = []cli.Flag{
+ cli.BoolFlag{
+ Name: "all, a",
+ Usage: "Cleans up all containers",
+ },
+ LatestFlag,
+ }
+ cleanupDescription = `
+ podman container cleanup
+
+ Cleans up mount points and network stacks on one or more containers from the host. The container name or ID can be used. This command is used internally when running containers, but can also be used if container cleanup has failed when a container exits.
+`
+ cleanupCommand = cli.Command{
+ Name: "cleanup",
+ Usage: "Cleanup network and mountpoints of one or more containers",
+ Description: cleanupDescription,
+ Flags: cleanupFlags,
+ Action: cleanupCmd,
+ ArgsUsage: "CONTAINER-NAME [CONTAINER-NAME ...]",
+ }
+)
+
+func cleanupCmd(c *cli.Context) error {
+ if err := validateFlags(c, cleanupFlags); err != nil {
+ return err
+ }
+ runtime, err := libpodruntime.GetRuntime(c)
+ if err != nil {
+ return errors.Wrapf(err, "could not get runtime")
+ }
+ defer runtime.Shutdown(false)
+
+ args := c.Args()
+
+ var lastError error
+ var cleanupContainers []*libpod.Container
+ if c.Bool("all") {
+ if c.Bool("lastest") {
+ return errors.New("--all and --latest cannot be used together")
+ }
+ if len(args) != 0 {
+ return errors.New("--all and explicit container IDs cannot be used together")
+ }
+ cleanupContainers, err = runtime.GetContainers()
+ if err != nil {
+ return errors.Wrapf(err, "unable to get container list")
+ }
+ } else if c.Bool("latest") {
+ if len(args) != 0 {
+ return errors.New("--latest and explicit container IDs cannot be used together")
+ }
+ lastCtr, err := runtime.GetLatestContainer()
+ if err != nil {
+ return errors.Wrapf(err, "unable to get latest container")
+ }
+ cleanupContainers = append(cleanupContainers, lastCtr)
+ } else {
+ for _, i := range args {
+ container, err := runtime.LookupContainer(i)
+ if err != nil {
+ fmt.Fprintln(os.Stderr, err)
+ lastError = errors.Wrapf(err, "unable to find container %s", i)
+ continue
+ }
+ cleanupContainers = append(cleanupContainers, container)
+ }
+ }
+ for _, ctr := range cleanupContainers {
+ if err = ctr.Cleanup(); err != nil {
+ if lastError != nil {
+ fmt.Fprintln(os.Stderr, lastError)
+ }
+ lastError = errors.Wrapf(err, "failed to cleanup container %v", ctr.ID())
+ } else {
+ fmt.Println(ctr.ID())
+ }
+ }
+ return lastError
+}