3ea09ba16a
* Refactor AllocDir to have a TaskDir struct per task. * Drivers expose filesystem isolation preference * Fix lxc mounting of `secrets/`
14 lines
243 B
Go
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
|
|
}
|