diff options
author | Jason T. Greene <jason.greene@redhat.com> | 2022-05-20 21:19:38 -0500 |
---|---|---|
committer | Jason T. Greene <jason.greene@redhat.com> | 2022-05-21 09:28:52 -0500 |
commit | 94e82121bf73c163d86d99fa37b0d64adf996fba (patch) | |
tree | 1b223ffd6d68b3fb701efe5eed5799aa344cac24 /utils/utils_windows.go | |
parent | 5c51e1d26ea7cb942008cf0e740bc16cb44bb2cf (diff) | |
download | podman-94e82121bf73c163d86d99fa37b0d64adf996fba.tar.gz podman-94e82121bf73c163d86d99fa37b0d64adf996fba.tar.bz2 podman-94e82121bf73c163d86d99fa37b0d64adf996fba.zip |
Support running podman under a root v2 cgroup
Signed-off-by: Jason T. Greene <jason.greene@redhat.com>
Diffstat (limited to 'utils/utils_windows.go')
-rw-r--r-- | utils/utils_windows.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/utils_windows.go b/utils/utils_windows.go index 2c159ab06..1d017f5ae 100644 --- a/utils/utils_windows.go +++ b/utils/utils_windows.go @@ -17,6 +17,10 @@ func GetOwnCgroup() (string, error) { return "", errors.New("not implemented for windows") } +func GetOwnCgroupDisallowRoot() (string, error) { + return "", errors.New("not implemented for windows") +} + func GetCgroupProcess(pid int) (string, error) { return "", errors.New("not implemented for windows") } |