github.com/hspak/nomad@v0.7.2-0.20180309000617-bc4ae22a39a5/client/driver/exec_default.go (about) 1 //+build darwin dragonfly freebsd netbsd openbsd solaris windows 2 3 package driver 4 5 import ( 6 cstructs "github.com/hashicorp/nomad/client/structs" 7 "github.com/hashicorp/nomad/helper" 8 ) 9 10 func (d *ExecDriver) Fingerprint(req *cstructs.FingerprintRequest, resp *cstructs.FingerprintResponse) error { 11 d.fingerprintSuccess = helper.BoolToPtr(false) 12 resp.Detected = true 13 return nil 14 }