mirror of
https://github.com/docker/docs.git
synced 2026-04-12 14:25:46 +07:00
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")
|
|
}
|