open-nomad/client/fingerprint/cgroup_universal.go

9 lines
176 B
Go
Raw Normal View History

2016-01-27 06:22:25 +00:00
// +build !linux
package fingerprint
// FindCgroupMountpointDir returns an empty path on non-Linux systems
2016-01-27 06:22:25 +00:00
func FindCgroupMountpointDir() (string, error) {
return "", nil
}