@@ -88,7 +88,7 @@ The syntax supports combining the name override with other options:
8888
8989Or with delegation:
9090
91- service [2345] user: podman group :podman \
91+ service [2345] @ podman:podman \
9292 cgroup.containers,name:podman,delegate,mem.max:4G \
9393 /usr/bin/podman system service -- Podman API
9494
@@ -102,12 +102,12 @@ Cgroup Delegation
102102For services that need to create their own child cgroups (container runtimes
103103like Docker, Podman, systemd-nspawn, LXC), use the ` delegate ` option:
104104
105- service [2345] user: dockerd group :dockerd \
105+ service [2345] @ dockerd:dockerd \
106106 cgroup.system,delegate /usr/bin/dockerd -- Docker daemon
107107
108108Or with the old colon syntax:
109109
110- service [2345] user: dockerd group :dockerd \
110+ service [2345] @ dockerd:dockerd \
111111 cgroup.system:delegate /usr/bin/dockerd -- Docker daemon
112112
113113This allows the container runtime to:
@@ -126,18 +126,18 @@ When delegation is enabled, Finit:
126126
127127** Requirements:**
128128
129- - The service should specify ` user: ` and ` group: ` for proper ownership
129+ - The service should specify ` @ user:group` for proper ownership
130130- Controllers are delegated from the parent cgroup
131131
132132** Example with additional config (new syntax):**
133133
134- service [2345] user: podman group :podman \
134+ service [2345] @ podman:podman \
135135 cgroup.containers,delegate,mem.max:4G \
136136 /usr/bin/podman system service -- Podman API
137137
138138** Or with old syntax:**
139139
140- service [2345] user: podman group :podman \
140+ service [2345] @ podman:podman \
141141 cgroup.containers:delegate,mem.max:4G \
142142 /usr/bin/podman system service -- Podman API
143143
0 commit comments