From 1ab0b469348388c43f396b92205e6ed624eaa5a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Palancher?= <remi@rezib.org> Date: Fri, 29 Aug 2014 13:36:50 -0700 Subject: [PATCH] get cgroup mount point from cgroup.conf Append subsystem name to cgroup mountpoint path extracted from configuration file cgroup.conf. Without this patch, the script does not execute properly and some garbage is let in cgroup filesystems. --- etc/cgroup.release_common.example.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/cgroup.release_common.example.in b/etc/cgroup.release_common.example.in index 8d12f45c21c..f2a82f770e6 100644 --- a/etc/cgroup.release_common.example.in +++ b/etc/cgroup.release_common.example.in @@ -23,7 +23,7 @@ get_mount_dir() $lssubsys -m $subsystem | awk '{print $2}' else if [ -f @sysconfdir@/cgroup.conf ]; then - grep -i "^CgroupMountpoint=" @sysconfdir@/cgroup.conf | sed s/.*=// | head -n 1 + grep -i "^CgroupMountpoint=" @sysconfdir@/cgroup.conf | sed "s/.*=\(.*\)/\1\/${subsystem}/" | head -n 1 else echo "/cgroup/$subsystem" fi -- GitLab