mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
![Michael Crosby](/assets/img/avatar_default.png)
Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@docker.com> (github: crosbymichael)
13 lines
266 B
Go
13 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")
|
|
}
|