github.com/hhrutter/nomad@v0.6.0-rc2.0.20170723054333-80c4b03f0705/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 }