mirror of https://github.com/docker/docs.git
Fix lxc driver build issue on Mac OS X
Docker-DCO-1.1-Signed-off-by: Albert Zhang <zhgwenming@gmail.com> (github: zhgwenming)
This commit is contained in:
parent
6ce4f82ebe
commit
210db1234d
|
@ -2,12 +2,10 @@
|
||||||
|
|
||||||
package lxc
|
package lxc
|
||||||
|
|
||||||
import "github.com/docker/docker/daemon/execdriver"
|
|
||||||
|
|
||||||
func setHostname(hostname string) error {
|
func setHostname(hostname string) error {
|
||||||
panic("Not supported on darwin")
|
panic("Not supported on darwin")
|
||||||
}
|
}
|
||||||
|
|
||||||
func finalizeNamespace(args *execdriver.InitArgs) error {
|
func finalizeNamespace(args *InitArgs) error {
|
||||||
panic("Not supported on darwin")
|
panic("Not supported on darwin")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue