Files
nomad/client/driver/java_universal.go
Alex Dadgar 9206446a8d Support setting class_path and class name.
This PR enhances the java driver to allow setting the class path and
class name to run. It also fixes an issue that would make the Java
driver attempt to chroot regardless of operating system (this never
effected a released version of Nomad).
2017-01-13 16:03:11 -08:00

10 lines
188 B
Go

// +build !linux
package driver
import cstructs "github.com/hashicorp/nomad/client/structs"
func (d *JavaDriver) FSIsolation() cstructs.FSIsolation {
return cstructs.FSIsolationNone
}