mirror of
https://github.com/containers/podman.git
synced 2025-09-26 08:14:14 +08:00

Add support for short-name aliasing. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
9 lines
178 B
Go
9 lines
178 B
Go
// +build !linux
|
|
|
|
package util
|
|
|
|
// IsCgroup2UnifiedMode returns whether we are running in cgroup 2 cgroup2 mode.
|
|
func IsCgroup2UnifiedMode() (bool, error) {
|
|
return false, nil
|
|
}
|