pkg/reexec: move reexec code to a new package

Docker-DCO-1.1-Signed-off-by: Cristian Staretu <cristian.staretu@gmail.com> (github: unclejack)
Upstream-commit: acd64278f13ef0ee565f4819951393b9c3fe89eb
Component: engine
This commit is contained in:
unclejack
2014-10-30 14:48:30 +02:00
parent abcf5d1b6e
commit 3dbfc4607d
10 changed files with 8 additions and 7 deletions

View File

@ -13,7 +13,7 @@ import (
"strings"
"syscall"
"github.com/docker/docker/reexec"
"github.com/docker/docker/pkg/reexec"
"github.com/docker/libcontainer/netlink"
)

View File

@ -11,7 +11,7 @@ import (
"runtime"
"github.com/docker/docker/daemon/execdriver"
"github.com/docker/docker/reexec"
"github.com/docker/docker/pkg/reexec"
"github.com/docker/libcontainer"
"github.com/docker/libcontainer/namespaces"
)

View File

@ -10,7 +10,7 @@ import (
"path/filepath"
"runtime"
"github.com/docker/docker/reexec"
"github.com/docker/docker/pkg/reexec"
"github.com/docker/libcontainer"
"github.com/docker/libcontainer/namespaces"
"github.com/docker/libcontainer/syncpipe"