mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 00:45:43 +03:00
15 lines
380 B
Go
15 lines
380 B
Go
//+build darwin dragonfly freebsd netbsd openbsd solaris windows
|
|
|
|
package driver
|
|
|
|
import (
|
|
cstructs "github.com/hashicorp/nomad/client/structs"
|
|
"github.com/hashicorp/nomad/helper"
|
|
)
|
|
|
|
func (d *ExecDriver) Fingerprint(req *cstructs.FingerprintRequest, resp *cstructs.FingerprintResponse) error {
|
|
d.fingerprintSuccess = helper.BoolToPtr(false)
|
|
resp.Detected = true
|
|
return nil
|
|
}
|