diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2012-07-03 13:49:58 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2012-07-03 13:49:58 -0500 |
commit | 3df0bd64cb8d520cb4e65b1ac307d0b9fa4e83c3 (patch) | |
tree | 56ad0b6a76146dec09732cfcc7911d5ba627525c /init.d/sysfs.in | |
parent | a5b4fab7321c4feac2bc981b7fbf4b32bb5bb981 (diff) |
cgroups: allow users to turn off creation of controller cgroups
This adds a switch to not create the one-cgroup-per-controller setup of
cgroups.
reported-by: davidweb@klaftenegger.de
X-Gentoo-Bug: 423317
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=423317
Diffstat (limited to 'init.d/sysfs.in')
-rw-r--r-- | init.d/sysfs.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/init.d/sysfs.in b/init.d/sysfs.in index e8567756..5bc5c717 100644 --- a/init.d/sysfs.in +++ b/init.d/sysfs.in @@ -74,7 +74,6 @@ mount_misc() mount_cgroups() { - yesno ${rc_cgroups:-YES} && [ -e /proc/cgroups ] && \ mountinfo -q /sys/fs/cgroup || return 0 local agent="@LIBEXECDIR@/sh/cgroup-release-agent.sh" @@ -83,6 +82,8 @@ mount_cgroups() -o none,nodev,noexec,nosuid,name=openrc,release_agent="$agent" \ openrc /sys/fs/cgroup/openrc echo 1 > /sys/fs/cgroup/openrc/notify_on_release + + yesno ${rc_controller_cgroups:-YES} && [ -e /proc/cgroups ] || return 0 while read name hier groups enabled rest; do case "${enabled}" in 1) mkdir /sys/fs/cgroup/${name} |