Files
nomad/client/driver/executor/resource_container_default.go
2016-07-09 23:45:33 -07:00

23 lines
436 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 clientCleanup(ic *dstructs.IsolationConfig, pid int) error {
return nil
}
func (rc *resourceContainer) executorCleanup() error {
return nil
}
func (rc *resourceContainer) getIsolationConfig() *dstructs.IsolationConfig {
return nil
}