2016-07-11 19:23:46 +00:00
|
|
|
//+build darwin dragonfly freebsd netbsd openbsd solaris windows
|
2016-05-09 18:25:36 +00:00
|
|
|
|
|
|
|
package driver
|
|
|
|
|
|
|
|
import (
|
2018-01-24 14:09:53 +00:00
|
|
|
cstructs "github.com/hashicorp/nomad/client/structs"
|
2017-02-21 03:35:51 +00:00
|
|
|
"github.com/hashicorp/nomad/helper"
|
2016-05-09 18:25:36 +00:00
|
|
|
)
|
|
|
|
|
2018-01-24 14:09:53 +00:00
|
|
|
func (d *ExecDriver) Fingerprint(req *cstructs.FingerprintRequest, resp *cstructs.FingerprintResponse) error {
|
2017-02-21 03:35:51 +00:00
|
|
|
d.fingerprintSuccess = helper.BoolToPtr(false)
|
2018-06-01 22:48:14 +00:00
|
|
|
resp.Detected = false
|
2018-01-24 14:09:53 +00:00
|
|
|
return nil
|
2016-05-09 18:25:36 +00:00
|
|
|
}
|