Add a stubbed execSetPlatformOpt for FreeBSD

This is essentially the same thing Solaris has
This commit is contained in:
R Tyler Croy 2017-09-05 05:07:13 +08:00
parent 7e78b15f59
commit e4e803970b
1 changed files with 11 additions and 0 deletions

11
daemon/exec_freebsd.go Normal file
View File

@ -0,0 +1,11 @@
package daemon
import (
"github.com/docker/docker/container"
"github.com/docker/docker/daemon/exec"
"github.com/docker/docker/libcontainerd"
)
func execSetPlatformOpt(c *container.Container, ec *exec.Config, p *libcontainerd.Process) error {
return nil
}