Files
podman/vendor/go.podman.io/common/pkg/cgroupv2/cgroups_unsupported.go
2025-09-01 12:33:04 +02:00

9 lines
144 B
Go

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