buildah/util/util_unsupported.go

9 lines
179 B
Go

//go:build !linux
package util
// IsCgroup2UnifiedMode returns whether we are running in cgroup 2 cgroup2 mode.
func IsCgroup2UnifiedMode() (bool, error) {
return false, nil
}