|
@@ -1,7 +1,6 @@
|
|
|
package nsinit
|
|
|
|
|
|
import (
|
|
|
- "fmt"
|
|
|
"github.com/dotcloud/docker/pkg/libcontainer"
|
|
|
"github.com/dotcloud/docker/pkg/system"
|
|
|
"os"
|
|
@@ -12,7 +11,7 @@ import (
|
|
|
// parent processes and creates an *exec.Cmd that will be used to fork/exec the
|
|
|
// namespaced init process
|
|
|
type CommandFactory interface {
|
|
|
- Create(container *libcontainer.Container, console string, syncFd uintptr, args []string) *exec.Cmd
|
|
|
+ Create(container *libcontainer.Container, console string, syncFd *os.File, args []string) *exec.Cmd
|
|
|
}
|
|
|
|
|
|
type DefaultCommandFactory struct {
|
|
@@ -22,16 +21,17 @@ type DefaultCommandFactory struct {
|
|
|
// Create will return an exec.Cmd with the Cloneflags set to the proper namespaces
|
|
|
// defined on the container's configuration and use the current binary as the init with the
|
|
|
// args provided
|
|
|
-func (c *DefaultCommandFactory) Create(container *libcontainer.Container, console string, pipe uintptr, args []string) *exec.Cmd {
|
|
|
+func (c *DefaultCommandFactory) Create(container *libcontainer.Container, console string, pipe *os.File, args []string) *exec.Cmd {
|
|
|
// get our binary name from arg0 so we can always reexec ourself
|
|
|
command := exec.Command(os.Args[0], append([]string{
|
|
|
"-console", console,
|
|
|
- "-pipe", fmt.Sprint(pipe),
|
|
|
+ "-pipe", "3",
|
|
|
"-root", c.Root,
|
|
|
"init"}, args...)...)
|
|
|
|
|
|
system.SetCloneFlags(command, uintptr(GetNamespaceFlags(container.Namespaces)))
|
|
|
command.Env = container.Env
|
|
|
+ command.ExtraFiles = []*os.File{pipe}
|
|
|
return command
|
|
|
}
|
|
|
|