diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-08-23 17:02:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-23 17:02:18 -0400 |
commit | 2538bea8da2a4dba96f1c80594a66f6319d2d872 (patch) | |
tree | d26c4d0dd4b5abfe540ad915c301634bf1a7c9a3 /docs/source/markdown/options | |
parent | 2651009c48c4ec5c5b4a52326f23948718c23768 (diff) | |
parent | 7d7aead51197fa98bb223b9e90b75ac4cd7cdf0a (diff) | |
download | podman-2538bea8da2a4dba96f1c80594a66f6319d2d872.tar.gz podman-2538bea8da2a4dba96f1c80594a66f6319d2d872.tar.bz2 podman-2538bea8da2a4dba96f1c80594a66f6319d2d872.zip |
Merge pull request #15438 from edsantiago/docs_dedup_devicecgrouprule
[CI:DOCS] Man pages: refactor common options: --device-cgroup-rule
Diffstat (limited to 'docs/source/markdown/options')
-rw-r--r-- | docs/source/markdown/options/device-cgroup-rule.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/source/markdown/options/device-cgroup-rule.md b/docs/source/markdown/options/device-cgroup-rule.md new file mode 100644 index 000000000..0ba3d4668 --- /dev/null +++ b/docs/source/markdown/options/device-cgroup-rule.md @@ -0,0 +1,6 @@ +#### **--device-cgroup-rule**=*"type major:minor mode"* + +Add a rule to the cgroup allowed devices list. The rule is expected to be in the format specified in the Linux kernel documentation (Documentation/cgroup-v1/devices.txt): + - type: a (all), c (char), or b (block); + - major and minor: either a number, or * for all; + - mode: a composition of r (read), w (write), and m (mknod(2)). |