execdrivers_freebsd.go 439 B

123456789101112131415
  1. // +build freebsd
  2. package execdrivers
  3. import (
  4. "fmt"
  5. "github.com/docker/docker/daemon/execdriver"
  6. "github.com/docker/docker/pkg/sysinfo"
  7. )
  8. // NewDriver returns a new execdriver.Driver from the given name configured with the provided options.
  9. func NewDriver(options []string, root, libPath, initPath string, sysInfo *sysinfo.SysInfo) (execdriver.Driver, error) {
  10. return nil, fmt.Errorf("jail driver not yet supported on FreeBSD")
  11. }