mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f8453cd049
Remove logging for now because it is complicating things Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
26 lines
743 B
Go
26 lines
743 B
Go
package nsinit
|
|
|
|
import (
|
|
"github.com/dotcloud/docker/pkg/libcontainer"
|
|
)
|
|
|
|
// NsInit is an interface with the public facing methods to provide high level
|
|
// exec operations on a container
|
|
type NsInit interface {
|
|
Exec(container *libcontainer.Container, term Terminal, args []string) (int, error)
|
|
ExecIn(container *libcontainer.Container, nspid int, args []string) (int, error)
|
|
Init(container *libcontainer.Container, uncleanRootfs, console string, syncPipe *SyncPipe, args []string) error
|
|
}
|
|
|
|
type linuxNs struct {
|
|
root string
|
|
commandFactory CommandFactory
|
|
stateWriter StateWriter
|
|
}
|
|
|
|
func NewNsInit(command CommandFactory, state StateWriter) NsInit {
|
|
return &linuxNs{
|
|
commandFactory: command,
|
|
stateWriter: state,
|
|
}
|
|
}
|