2023-04-10 15:36:59 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2021-10-01 13:59:55 +00:00
|
|
|
//go:build !linux
|
2019-01-14 17:25:59 +00:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package allocdir
|
|
|
|
|
|
|
|
// currently a noop on non-Linux platforms
|
2021-12-20 10:44:21 +00:00
|
|
|
func (t *TaskDir) unmountSpecialDirs() error {
|
2019-01-14 17:25:59 +00:00
|
|
|
return nil
|
|
|
|
}
|