mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
74bfe500e4
With this patch, `runc start` command can start mulit-containers at one command this patch also checks the argument of the `start` command. root@ubuntu:# runc list ID PID STATUS BUNDLE CREATED a 0 stopped /mycontainer 2016-09-23T08:56:42.754026567Z b 62979 created /mycontainer 2016-09-23T09:01:36.421976458Z c 62993 running /mycontainer 2016-09-23T09:01:38.105940389Z d 63006 created /mycontainer 2016-09-23T09:01:39.65441942Z e 63020 created /mycontainer 2016-09-23T09:01:40.989995515Z root@ubuntu:# runc start runc: "start" requires a minimum of 1 argument root@ubuntu:# runc start a b c d e f cannot start a container that has run and stopped cannot start an already running container container f is not exist all or part of the containers start failed root@ubuntu:# runc list ID PID STATUS BUNDLE CREATED a 0 stopped /mycontainer 2016-09-23T08:56:42.754026567Z b 62979 running /mycontainer 2016-09-23T09:01:36.421976458Z c 62993 running /mycontainer 2016-09-23T09:01:38.105940389Z d 63006 running /mycontainer 2016-09-23T09:01:39.65441942Z e 63020 running /mycontainer 2016-09-23T09:01:40.989995515Z Signed-off-by: Wang Long <long.wanglong@huawei.com>
68 lines
1.8 KiB
Go
68 lines
1.8 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/opencontainers/runc/libcontainer"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
var startCommand = cli.Command{
|
|
Name: "start",
|
|
Usage: "executes the user defined process in a created container",
|
|
ArgsUsage: `<container-id> [container-id...]
|
|
|
|
Where "<container-id>" is your name for the instance of the container that you
|
|
are starting. The name you provide for the container instance must be unique on
|
|
your host.`,
|
|
Description: `The start command executes the user defined process in a created container .`,
|
|
Action: func(context *cli.Context) error {
|
|
hasError := false
|
|
if !context.Args().Present() {
|
|
return fmt.Errorf("runc: \"start\" requires a minimum of 1 argument")
|
|
}
|
|
|
|
factory, err := loadFactory(context)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, id := range context.Args() {
|
|
container, err := factory.Load(id)
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "container %s is not exist\n", id)
|
|
hasError = true
|
|
continue
|
|
}
|
|
status, err := container.Status()
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "status for %s: %v\n", id, err)
|
|
hasError = true
|
|
continue
|
|
}
|
|
switch status {
|
|
case libcontainer.Created:
|
|
if err := container.Exec(); err != nil {
|
|
fmt.Fprintf(os.Stderr, "start for %s failed: %v\n", id, err)
|
|
hasError = true
|
|
}
|
|
case libcontainer.Stopped:
|
|
fmt.Fprintln(os.Stderr, "cannot start a container that has run and stopped")
|
|
hasError = true
|
|
case libcontainer.Running:
|
|
fmt.Fprintln(os.Stderr, "cannot start an already running container")
|
|
hasError = true
|
|
default:
|
|
fmt.Fprintf(os.Stderr, "cannot start a container in the %s state\n", status)
|
|
hasError = true
|
|
}
|
|
}
|
|
|
|
if hasError {
|
|
return fmt.Errorf("one or more of container start failed")
|
|
}
|
|
return nil
|
|
},
|
|
}
|