The LXC driver was deprecated in Docker 1.8. Following the deprecation rules, we can remove a deprecated feature after two major releases. LXC won't be supported anymore starting on Docker 1.10. Signed-off-by: David Calavera <david.calavera@gmail.com> Upstream-commit: 3b5fac462d21ca164b3778647420016315289034 Component: engine
21 lines
611 B
Go
21 lines
611 B
Go
// +build linux
|
|
|
|
package execdrivers
|
|
|
|
import (
|
|
"fmt"
|
|
"path"
|
|
|
|
"github.com/docker/docker/daemon/execdriver"
|
|
"github.com/docker/docker/daemon/execdriver/native"
|
|
"github.com/docker/docker/pkg/sysinfo"
|
|
)
|
|
|
|
// NewDriver returns a new execdriver.Driver from the given name configured with the provided options.
|
|
func NewDriver(name string, options []string, root, libPath, initPath string, sysInfo *sysinfo.SysInfo) (execdriver.Driver, error) {
|
|
if name != "native" {
|
|
return nil, fmt.Errorf("unknown exec driver %s", name)
|
|
}
|
|
return native.NewDriver(path.Join(root, "execdriver", "native"), initPath, options)
|
|
}
|