open-nomad/client/driver/executor/resource_container_default.go

19 lines
355 B
Go
Raw Normal View History

// +build darwin dragonfly freebsd netbsd openbsd solaris windows
package executor
import (
dstructs "github.com/hashicorp/nomad/client/driver/structs"
)
type resourceContainer struct {
}
func (rc *resourceContainer) executorCleanup() error {
return nil
}
func (rc *resourceContainer) getIsolationConfig() *dstructs.IsolationConfig {
return nil
}