mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Removed mount code from container. It belongs in graph
This commit is contained in:
parent
ea258c4492
commit
6f6eaca861
2 changed files with 0 additions and 14 deletions
|
@ -1,7 +0,0 @@
|
|||
package docker
|
||||
|
||||
import "errors"
|
||||
|
||||
func mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
|
||||
return errors.New("mount is not implemented on darwin")
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
package docker
|
||||
|
||||
import "syscall"
|
||||
|
||||
func mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
|
||||
return syscall.Mount(source, target, fstype, flags, data)
|
||||
}
|
Loading…
Add table
Reference in a new issue