summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sh/runscript.sh.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/sh/runscript.sh.in b/sh/runscript.sh.in
index 3b91001..344e31c 100644
--- a/sh/runscript.sh.in
+++ b/sh/runscript.sh.in
@@ -194,6 +194,14 @@ unset _conf_d
# Load any system overrides
sourcex -e "@SYSCONFDIR@/rc.conf"
+if [ "$RC_UNAME" = "Linux" ]; then
+ if [ -d /sys/fs/cgroup/openrc ]; then
+ mkdir -p /sys/fs/cgroup/openrc/${RC_SVCNAME}
+ echo $$ > /sys/fs/cgroup/openrc/${RC_SVCNAME}/tasks
+ fi
+ #todo: add processes to cgroups based on settings in conf.d
+fi
+
# Apply any ulimit defined
[ -n "${rc_ulimit:-$RC_ULIMIT}" ] && ulimit ${rc_ulimit:-$RC_ULIMIT}