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

9 lines
156 B
Go

// +build !linux
package cgroupv2
// Enabled returns whether we are running in cgroup 2 cgroup2 mode.
func Enabled() (bool, error) {
return false, nil
}