2015-09-23 04:56:29 +00:00
|
|
|
package allocdir
|
|
|
|
|
|
|
|
import "errors"
|
|
|
|
|
|
|
|
func (d *AllocDir) linkOrCopy(src, dst string) error {
|
|
|
|
return fileCopy(src, dst)
|
|
|
|
}
|
|
|
|
|
|
|
|
// The windows version does nothing currently.
|
2015-09-25 23:49:14 +00:00
|
|
|
func (d *AllocDir) mountSharedDir(dir string) error {
|
2015-09-23 04:56:29 +00:00
|
|
|
return errors.New("Mount on Windows not supported.")
|
|
|
|
}
|
2015-09-25 23:49:14 +00:00
|
|
|
|
|
|
|
// The windows version does nothing currently.
|
|
|
|
func (d *AllocDir) dropDirPermissions(path string) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// The windows version does nothing currently.
|
|
|
|
func (d *AllocDir) unmountSharedDir(dir string) error {
|
|
|
|
return syscall.Unlink(dir)
|
|
|
|
}
|