Files
nomad/client/driver/executor/resource_container_default.go
Sean Chittenden a15efc5796 Rename resourceContainer.cleanup() to executorCleanup()
Not to be confused with the imminent ClientCleanup().
2016-07-09 23:25:33 -07:00

19 lines
355 B
Go

// +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
}