automation-tests/common/pkg/cgroupv2/cgroups_unsupported.go

10 lines
161 B
Go

//go:build !linux
// +build !linux
package cgroupv2
// Enabled returns whether we are running on cgroup v2
func Enabled() (bool, error) {
return false, nil
}