github.com/smithx10/nomad@v0.9.1-rc1/client/fingerprint/cgroup_default.go (about)

     1  // +build !linux
     2  
     3  package fingerprint
     4  
     5  // FindCgroupMountpointDir is used to find the cgroup mount point on a Linux
     6  // system. Here it is a no-op implemtation
     7  func FindCgroupMountpointDir() (string, error) {
     8  	return "", nil
     9  }
    10  
    11  func (f *CGroupFingerprint) Fingerprint(*FingerprintRequest, *FingerprintResponse) error {
    12  	return nil
    13  }