Signed-off-by: Andrew Page <admwiggin@gmail.com> Upstream-commit: 89ec17d11319ae39bff19985ac59fc878fe1fe1e Component: engine
14 lines
257 B
Go
14 lines
257 B
Go
// +build !linux
|
|
|
|
package lxc
|
|
|
|
import "github.com/docker/docker/daemon/execdriver"
|
|
|
|
func setHostname(hostname string) error {
|
|
panic("Not supported on darwin")
|
|
}
|
|
|
|
func finalizeNamespace(args *execdriver.InitArgs) error {
|
|
panic("Not supported on darwin")
|
|
}
|