open-nomad/client/driver/exec_default.go

13 lines
298 B
Go

// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris
package driver
import (
"github.com/hashicorp/nomad/client/config"
"github.com/hashicorp/nomad/nomad/structs"
)
func (d *ExecDriver) Fingerprint(cfg *config.Config, node *structs.Node) (bool, error) {
return false, nil
}