Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@docker.com> (github: crosbymichael) Upstream-commit: d31ae5aed80eeb40a461930776ad2b507804bf4e Component: engine
14 lines
266 B
Go
14 lines
266 B
Go
// +build !linux !amd64
|
|
|
|
package lxc
|
|
|
|
import "github.com/dotcloud/docker/daemon/execdriver"
|
|
|
|
func setHostname(hostname string) error {
|
|
panic("Not supported on darwin")
|
|
}
|
|
|
|
func finalizeNamespace(args *execdriver.InitArgs) error {
|
|
panic("Not supported on darwin")
|
|
}
|