diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-05-17 19:54:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-17 19:54:13 +0200 |
commit | 144244aeed673957692bc6cf36c933e4b2d93a80 (patch) | |
tree | eaf7ade613f69af364c38e7ff74b77af11731cae /pkg/util/utils_windows.go | |
parent | 41c4721b0b06e213e01713aa491fe877befbe077 (diff) | |
parent | 0e8f4ddaa93b12ca02a94a0624f38416f0f75e4e (diff) | |
download | podman-144244aeed673957692bc6cf36c933e4b2d93a80.tar.gz podman-144244aeed673957692bc6cf36c933e4b2d93a80.tar.bz2 podman-144244aeed673957692bc6cf36c933e4b2d93a80.zip |
Merge pull request #3104 from giuseppe/initial-cgroup2
rootless: allow resource isolation with cgroup v2
Diffstat (limited to 'pkg/util/utils_windows.go')
-rw-r--r-- | pkg/util/utils_windows.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/util/utils_windows.go b/pkg/util/utils_windows.go index 1e9ccea90..b33733da9 100644 --- a/pkg/util/utils_windows.go +++ b/pkg/util/utils_windows.go @@ -10,3 +10,8 @@ import ( func GetRootlessRuntimeDir() (string, error) { return "", errors.New("this function is not implemented for windows") } + +// IsCgroup2UnifiedMode returns whether we are running in cgroup 2 unified mode. +func IsCgroup2UnifiedMode() (bool, error) { + return false, errors.New("this function is not implemented for windows") +} |