github.com/maier/nomad@v0.4.1-0.20161110003312-a9e3d0b8549d/client/driver/exec_default.go (about) 1 //+build darwin dragonfly freebsd netbsd openbsd solaris windows 2 3 package driver 4 5 import ( 6 "github.com/hashicorp/nomad/client/config" 7 "github.com/hashicorp/nomad/nomad/structs" 8 ) 9 10 func (d *ExecDriver) Fingerprint(cfg *config.Config, node *structs.Node) (bool, error) { 11 return false, nil 12 }