open-nomad/client/allocdir/alloc_dir_darwin.go

16 lines
350 B
Go
Raw Normal View History

package allocdir
import (
"syscall"
)
// Hardlinks the shared directory. As a side-effect the shared directory and
// task directory must be on the same filesystem.
2015-09-25 23:49:14 +00:00
func (d *AllocDir) mountSharedDir(dir string) error {
return syscall.Link(d.SharedDir, dir)
}
func (d *AllocDir) unmountSharedDir(dir string) error {
return syscall.Unlink(dir)
}