cgroups: remove references to the "openrc" cgroup

Openrc will set up cgroups the way the kernel documentation recommends.
This commit is contained in:
William Hubbs 2011-12-19 21:54:53 -06:00
parent 461c69acdb
commit ed4605bf9f
2 changed files with 0 additions and 18 deletions

View File

@ -85,11 +85,6 @@ mount_cgroups()
;;
esac
done < /proc/cgroups
# mkdir /sys/fs/cgroup/openrc
# mount -t cgroup \
# -o nodev,noexec,nosuid,name=openrc \
# openrc /sys/fs/cgroup/openrc
}
start()

View File

@ -131,19 +131,6 @@ start()
service_inactive && _inactive=true
mark_service_inactive
fi
if [ "$RC_UNAME" = Linux ]; then
local cgroup=/sys/fs/cgroup/openrc
local svc_cgroup=${cgroup}/${RC_SVCNAME}
if mountinfo -q ${cgroup}; then
mkdir ${svc_cgroup}
for f in cpuset.cpus cpuset.mems; do
if [ -f ${cgroup}/${f} ]; then
cp ${cgroup}/${f} ${svc_cgroup}
fi
done
echo $$ > ${svc_cgroup}/tasks
fi
fi
eval start-stop-daemon --start \
--exec $command \
${procname:+--name} $procname \