summaryrefslogtreecommitdiff
path: root/pkg/util/utils_windows.go
diff options
context:
space:
mode:
authorGiuseppe Scrivano <gscrivan@redhat.com>2019-05-10 16:20:55 +0200
committerGiuseppe Scrivano <gscrivan@redhat.com>2019-05-13 10:48:16 +0200
commit8e88461511e81d2327e4c1a1315bb58fda1827ca (patch)
tree6c70b602f48ab8eaf8e327a314b929eb5bebd22a /pkg/util/utils_windows.go
parentd2571c7fd49d22e822a6f3b3796488218c9f9e46 (diff)
downloadpodman-8e88461511e81d2327e4c1a1315bb58fda1827ca.tar.gz
podman-8e88461511e81d2327e4c1a1315bb58fda1827ca.tar.bz2
podman-8e88461511e81d2327e4c1a1315bb58fda1827ca.zip
rootless, spec: allow resources with cgroup v2
We were always raising an error when the rootless user attempted to setup resources, but this is not the case anymore with cgroup v2. Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'pkg/util/utils_windows.go')
-rw-r--r--pkg/util/utils_windows.go5
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")
+}