open-nomad/client/allocdir/task_dir_nonlinux.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
228 B
Go
Raw Permalink Normal View History

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
//go:build !linux
2019-01-14 17:25:59 +00:00
// +build !linux
package allocdir
// currently a noop on non-Linux platforms
func (t *TaskDir) unmountSpecialDirs() error {
2019-01-14 17:25:59 +00:00
return nil
}