summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorŠtěpán Němec <stepnem@gmail.com>2021-06-09 09:22:43 +0200
committerLennart Poettering <lennart@poettering.net>2021-06-09 11:04:17 +0200
commit7833a46ca12d8bfea0f2ddee6df5e37f2ad600f5 (patch)
treea5c138a3c7a2b4df0281168ef6ef5c91fb23bb30 /docs
parentbead169fe0f182a98cc8b55a63b3a12a5049ab45 (diff)
downloadsystemd-7833a46ca12d8bfea0f2ddee6df5e37f2ad600f5.tar.gz
docs/CGROUP_DELEGATION: fix some typos
Diffstat (limited to 'docs')
-rw-r--r--docs/CGROUP_DELEGATION.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/CGROUP_DELEGATION.md b/docs/CGROUP_DELEGATION.md
index 4011f09322..773f254a1e 100644
--- a/docs/CGROUP_DELEGATION.md
+++ b/docs/CGROUP_DELEGATION.md
@@ -131,7 +131,7 @@ If you wonder how to detect which of these three modes is currently used, use
you are either in legacy or hybrid mode. To distinguish these two cases, run
`statfs()` again on `/sys/fs/cgroup/unified/`. If that succeeds and reports
`CGROUP2_SUPER_MAGIC` you are in hybrid mode, otherwise not.
-From a shell, you can use check the `Type` in `stat -f /sys/fs/cgroup` and
+From a shell, you can check the `Type` in `stat -f /sys/fs/cgroup` and
`stat -f /sys/fs/cgroup/unified`.
## systemd's Unit Types
@@ -224,7 +224,7 @@ guarantees:
cgroups below it. Note however that systemd will do that only in the unified
hierarchy (in unified and hybrid mode) as well as on systemd's own private
hierarchy (in legacy and hybrid mode). It won't pass ownership of the legacy
- controller hierarchies. Delegation to less privileges processes is not safe
+ controller hierarchies. Delegation to less privileged processes is not safe
in cgroup v1 (as a limitation of the kernel), hence systemd won't facilitate
access to it.
@@ -243,7 +243,7 @@ delegated.
Let's stress one thing: delegation is available on scope and service units
only. It's expressly not available on slice units. Why? Because slice units are
-our *inner* nodes of the cgroup trees and we freely attach service and scopes
+our *inner* nodes of the cgroup trees and we freely attach services and scopes
to them. If we'd allow delegation on slice units then this would mean that
both systemd and your own manager would create/delete cgroups below the slice
unit and that conflicts with the single-writer rule.