github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/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 }