github.com/jrxfive/nomad@v0.6.1-0.20170802162750-1fef470e89bf/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/helper" 8 "github.com/hashicorp/nomad/nomad/structs" 9 ) 10 11 func (d *ExecDriver) Fingerprint(cfg *config.Config, node *structs.Node) (bool, error) { 12 d.fingerprintSuccess = helper.BoolToPtr(false) 13 return false, nil 14 }