diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-08-13 11:03:06 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-08-15 18:07:04 +0000 |
commit | ad7d46957156a2ab9ae5bae6b4e337d941a3b971 (patch) | |
tree | c52eb52b262a0854e163039445b00b030300c36b | |
parent | 0ddb42b4f7bffe8f0d3f8415717b94beed8a8545 (diff) | |
download | podman-ad7d46957156a2ab9ae5bae6b4e337d941a3b971.tar.gz podman-ad7d46957156a2ab9ae5bae6b4e337d941a3b971.tar.bz2 podman-ad7d46957156a2ab9ae5bae6b4e337d941a3b971.zip |
Switch systemd default CGroup parent to machine.slice
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #1266
Approved by: baude
-rw-r--r-- | libpod/container.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container.go b/libpod/container.go index 9f72bbe53..b79258c43 100644 --- a/libpod/container.go +++ b/libpod/container.go @@ -43,7 +43,7 @@ const CgroupfsDefaultCgroupParent = "/libpod_parent" // SystemdDefaultCgroupParent is the cgroup parent for the systemd cgroup // manager in libpod -const SystemdDefaultCgroupParent = "system.slice" +const SystemdDefaultCgroupParent = "machine.slice" // LinuxNS represents a Linux namespace type LinuxNS int |