open-nomad/client/allocdir/task_dir_nonlinux.go
Michael Schurter 3ea09ba16a Move chroot building into TaskRunner
* Refactor AllocDir to have a TaskDir struct per task.
* Drivers expose filesystem isolation preference
* Fix lxc mounting of `secrets/`
2017-01-05 16:31:49 -08:00

14 lines
243 B
Go

// +build !linux
package allocdir
// currently a noop on non-Linux platforms
func (d *TaskDir) mountSpecialDirs() error {
return nil
}
// currently a noop on non-Linux platforms
func (d *TaskDir) unmountSpecialDirs() error {
return nil
}