diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2013-07-05 11:04:45 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2013-07-05 11:04:45 -0500 |
commit | a7a6092f015642c86ea2a545bc8f6928afcffc66 (patch) | |
tree | 2eb41704afe2eff30eb8ffc451473fbf06f91ea1 /sh/rc-cgroup.sh.in | |
parent | 88cdcc145eb6343b94626ab3910a5eb1f8654212 (diff) |
cgroups: change '$$' to 0 for consistency
Diffstat (limited to 'sh/rc-cgroup.sh.in')
-rw-r--r-- | sh/rc-cgroup.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/rc-cgroup.sh.in b/sh/rc-cgroup.sh.in index b3bab0f9..389e8a07 100644 --- a/sh/rc-cgroup.sh.in +++ b/sh/rc-cgroup.sh.in @@ -77,7 +77,7 @@ cgroup_add_service() # cgroups. But may lead to a problems where that inheriting # is needed. for d in /sys/fs/cgroup/* ; do - echo $$ > "${d}"/tasks + echo 0 > "${d}"/tasks done openrc_cgroup=/sys/fs/cgroup/openrc |