]> git.ipfire.org Git - thirdparty/util-linux.git/commit
sys-utils: fix SELinux context example in mount.8
authorTodd Zullinger <tmz@pobox.com>
Sun, 18 Jun 2023 21:29:11 +0000 (17:29 -0400)
committerKarel Zak <kzak@redhat.com>
Tue, 20 Jun 2023 09:27:07 +0000 (11:27 +0200)
commit7293d66314b4cb89a9fe5b6f1fe4e564c26e3c11
tree6ab1d3503c9b17a67d9ff4968dcbde03a5fd7cba
parentd7f1fc1839dba85adc10ba7cc9a46da57c946491
sys-utils: fix SELinux context example in mount.8

In the description of the context option, the example which shows how to
properly quote is displayed incorrectly on terminals > 80 columns.  This
leaves a seemingly needless '\' in the command, e.g.:

    mount -t tmpfs none /mnt -o \ 'context="system_u:...'

The intent is to display the command properly on terminals <= 80
columns.  Use a literal block to ensure the code is displayed
consistently, regardless of the terminal width.

Connect the blockquote to the previous indented items in the context
option description to ensure it is properly indented.

Signed-off-by: Todd Zullinger <tmz@pobox.com>
sys-utils/mount.8.adoc