2014-10-17 08:00:59 +08:00
|
|
|
package integration
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
"runtime"
|
|
|
|
|
|
|
|
"github.com/docker/libcontainer/namespaces"
|
|
|
|
)
|
|
|
|
|
|
|
|
// init runs the libcontainer initialization code because of the busybox style needs
|
|
|
|
// to work around the go runtime and the issues with forking
|
|
|
|
func init() {
|
|
|
|
if len(os.Args) < 2 || os.Args[1] != "init" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
runtime.LockOSThread()
|
|
|
|
|
2014-12-18 05:10:41 +08:00
|
|
|
if err := namespaces.Init(os.NewFile(3, "pipe")); err != nil {
|
2014-10-17 08:00:59 +08:00
|
|
|
log.Fatalf("unable to initialize for container: %s", err)
|
|
|
|
}
|
|
|
|
os.Exit(1)
|
|
|
|
}
|