From: Rachid Koucha <47061324+Rachid-Koucha@users.noreply.github.com> Date: Sat, 12 Oct 2019 11:05:50 +0000 (+0200) Subject: Bad sgml/man translation X-Git-Tag: lxc-4.0.0~107^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=767bd70;p=thirdparty%2Flxc.git Bad sgml/man translation When calling "man lxc.container.conf", an internal "man" keyword is displayed : $ man lxc.container.conf [...] lxc.mount.entry Specify a mount point corresponding to a line in the fstab format. Moreover lxc supports mount propagation, such as rslave or rprivate, and adds three additional mount options. optional don't fail if mount does not work. create=dir or create=file to create dir (or file) when the point will be mounted. relative source path is taken to be relative to the mounted container root. For instance, dev/null proc/kcore none bind,relative 0 0 .fi <-----------------------------------UNEXPECTED KEYWORD !!!! The problem seems to come from the missing blanks before "dev/null proc/kcore none bind,relative 0 0" Moreover, for homogeneity purposes, it is better to use the "programlisting" tag used in the rest of the text instead of "screen". Signed-off-by: Rachid Koucha --- diff --git a/doc/lxc.container.conf.sgml.in b/doc/lxc.container.conf.sgml.in index 922eeaac8..784f83373 100644 --- a/doc/lxc.container.conf.sgml.in +++ b/doc/lxc.container.conf.sgml.in @@ -1172,9 +1172,9 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA source path is taken to be relative to the mounted container root. For instance, - -dev/null proc/kcore none bind,relative 0 0 - + + dev/null proc/kcore none bind,relative 0 0 + Will expand dev/null to ${}/dev/null, and mount it to proc/kcore inside the container.