From: Wolfgang Bumiller Date: Mon, 6 Apr 2020 07:50:42 +0000 (+0200) Subject: use final names for cgroup isolation X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;ds=inline;h=e532a3625720bbd0a42a07f2b7884f977c8bac27;p=pve-container.git use final names for cgroup isolation See: https://github.com/lxc/lxc/pull/3353 Signed-off-by: Wolfgang Bumiller --- diff --git a/src/PVE/LXC.pm b/src/PVE/LXC.pm index 1c27a86..b4ffc9b 100644 --- a/src/PVE/LXC.pm +++ b/src/PVE/LXC.pm @@ -596,8 +596,8 @@ sub update_lxc_config { # simply move the monitor outside: $raw .= "lxc.cgroup.dir.monitor = lxc.monitor/$vmid\n"; # cgroup namespace separation for stronger limits: - $raw .= "lxc.cgroup.dir.payload = lxc/$vmid\n"; - $raw .= "lxc.cgroup.dir.namespace = ns\n"; + $raw .= "lxc.cgroup.dir.container = lxc/$vmid\n"; + $raw .= "lxc.cgroup.dir.container.inner = ns\n"; } die "missing 'arch' - internal error" if !$conf->{arch};