buildah/util/util_unsupported.go

9 lines
178 B
Go
Raw Normal View History

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