mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-07-27 05:03:17 +00:00
doc: Add the description of apparmor profile generation to man pages
Only add to English and Japanese man pages. Signed-off-by: KATOH Yasufumi <karma@jazz.email.ne.jp>
This commit is contained in:
parent
e31362893b
commit
8dca2bd3ae
@ -2337,6 +2337,14 @@ by KATOH Yasufumi <karma at jazz.email.ne.jp>
|
|||||||
もし apparmor プロファイルが変更されないままでなくてはならない場合 (ネストしたコンテナである場合や、すでに confined されている場合) は以下のように設定します。
|
もし apparmor プロファイルが変更されないままでなくてはならない場合 (ネストしたコンテナである場合や、すでに confined されている場合) は以下のように設定します。
|
||||||
</para>
|
</para>
|
||||||
<programlisting>lxc.apparmor.profile = unchanged</programlisting>
|
<programlisting>lxc.apparmor.profile = unchanged</programlisting>
|
||||||
|
<para>
|
||||||
|
<!--
|
||||||
|
If you instruct LXC to generate the apparmor profile,
|
||||||
|
then use
|
||||||
|
-->
|
||||||
|
もし LXC に AppArmor プロファイルを生成するように指示するには次のように設定します。
|
||||||
|
</para>
|
||||||
|
<programlisting>lxc.apparmor.profile = generated</programlisting>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
@ -2368,6 +2376,46 @@ by KATOH Yasufumi <karma at jazz.email.ne.jp>
|
|||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term>
|
||||||
|
<option>lxc.apparmor.allow_nesting</option>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<!--
|
||||||
|
If set this to 1, causes the following changes. When
|
||||||
|
generated apparmor profiles are used, they will contain
|
||||||
|
the necessary changes to allow creating a nested
|
||||||
|
container. In addition to the usual mount points,
|
||||||
|
<filename>/dev/.lxc/proc</filename>
|
||||||
|
and <filename>/dev/.lxc/sys</filename> will contain
|
||||||
|
procfs and sysfs mount points without the lxcfs
|
||||||
|
overlays, which, if generated apparmor profiles are
|
||||||
|
being used, will not be read/writable directly.
|
||||||
|
-->
|
||||||
|
1 に設定すると次のような変更が行われます。
|
||||||
|
generated な AppArmor プロファイルが使われる場合、ネストしたコンテナを使うのに必要な変更が含まれます。通常のマウントポイントに加えて、lxcfs のオーバーレイなしで、<filename>/dev/.lxc/proc</filename> と <filename>/dev/.lxc/sys</filename> が procfs と sysfs のマウントポイントに含まれます。
|
||||||
|
generated な AppArmor プロファイルが使われている場合は、直接読み書きはできません
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term>
|
||||||
|
<option>lxc.apparmor.raw</option>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<!--
|
||||||
|
A list of raw AppArmor profile lines to append to the
|
||||||
|
profile. Only valid when using generated profiles.
|
||||||
|
-->
|
||||||
|
プロファイルに加える、生の AppArmor プロファイル行のリストです。generated なプロファイルを使っているときのみ有効です。
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
|
||||||
</variablelist>
|
</variablelist>
|
||||||
</refsect2>
|
</refsect2>
|
||||||
|
|
||||||
|
@ -1751,6 +1751,11 @@ dev/null proc/kcore none bind,relative 0 0
|
|||||||
are nesting containers and are already confined), then use
|
are nesting containers and are already confined), then use
|
||||||
</para>
|
</para>
|
||||||
<programlisting>lxc.apparmor.profile = unchanged</programlisting>
|
<programlisting>lxc.apparmor.profile = unchanged</programlisting>
|
||||||
|
<para>
|
||||||
|
If you instruct LXC to generate the apparmor profile,
|
||||||
|
then use
|
||||||
|
</para>
|
||||||
|
<programlisting>lxc.apparmor.profile = generated</programlisting>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
@ -1774,6 +1779,38 @@ dev/null proc/kcore none bind,relative 0 0
|
|||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term>
|
||||||
|
<option>lxc.apparmor.allow_nesting</option>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
If set this to 1, causes the following changes. When
|
||||||
|
generated apparmor profiles are used, they will contain
|
||||||
|
the necessary changes to allow creating a nested
|
||||||
|
container. In addition to the usual mount points,
|
||||||
|
<filename>/dev/.lxc/proc</filename>
|
||||||
|
and <filename>/dev/.lxc/sys</filename> will contain
|
||||||
|
procfs and sysfs mount points without the lxcfs
|
||||||
|
overlays, which, if generated apparmor profiles are
|
||||||
|
being used, will not be read/writable directly.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term>
|
||||||
|
<option>lxc.apparmor.raw</option>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
A list of raw AppArmor profile lines to append to the
|
||||||
|
profile. Only valid when using generated profiles.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
|
||||||
</variablelist>
|
</variablelist>
|
||||||
</refsect2>
|
</refsect2>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user