github.com/mattyr/nomad@v0.3.3-0.20160919021406-3485a065154a/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/nomad/structs"
     8  )
     9  
    10  func (d *ExecDriver) Fingerprint(cfg *config.Config, node *structs.Node) (bool, error) {
    11  	return false, nil
    12  }