diff options
author | Antonio Russo <[email protected]> | 2018-06-07 12:38:39 -0400 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2018-06-07 09:38:39 -0700 |
commit | 7106b23640e8fba33df09b160f366918dcb79021 (patch) | |
tree | b0960ad92d552a6f4ea163eb3fa2f7edeadf19f1 | |
parent | b405837a6cf74165316bf996b4b79d171b19c211 (diff) |
Minor documentation, logging, and testing typos
This patch collects some minor inconsistencies and typos in the
documentation, logging and testing infrastructure.
Reviewed-by: George Melikov <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Antonio Russo <[email protected]>
Closes #7608
-rwxr-xr-x | etc/systemd/system-generators/zfs-mount-generator.in | 18 | ||||
-rw-r--r-- | man/man8/zfs.8 | 11 | ||||
-rwxr-xr-x | tests/zfs-tests/tests/perf/regression/random_writes_zil.ksh | 2 |
3 files changed, 15 insertions, 16 deletions
diff --git a/etc/systemd/system-generators/zfs-mount-generator.in b/etc/systemd/system-generators/zfs-mount-generator.in index 08d0e1a55..2c93111f3 100755 --- a/etc/systemd/system-generators/zfs-mount-generator.in +++ b/etc/systemd/system-generators/zfs-mount-generator.in @@ -29,7 +29,7 @@ FSLIST="@sysconfdir@/zfs/zfs-list.cache" [ -d "${FSLIST}" ] || exit 0 do_fail() { - printf 'zfs-mount-generator.sh: %s\n' "$*" > /dev/kmsg + printf 'zfs-mount-generator: %s\n' "$*" > /dev/kmsg exit 1 } @@ -103,13 +103,13 @@ process_line() { elif [ "${p_relatime}" = off ] ; then opts="${opts},atime,strictatime" else - printf 'zfs-mount-generator.sh: (%s) invalid relatime\n' \ + printf 'zfs-mount-generator: (%s) invalid relatime\n' \ "${dataset}" >/dev/kmsg fi elif [ "${p_atime}" = off ] ; then opts="${opts},noatime" else - printf 'zfs-mount-generator.sh: (%s) invalid atime\n' \ + printf 'zfs-mount-generator: (%s) invalid atime\n' \ "${dataset}" >/dev/kmsg fi @@ -119,7 +119,7 @@ process_line() { elif [ "${p_devices}" = off ] ; then opts="${opts},nodev" else - printf 'zfs-mount-generator.sh: (%s) invalid devices\n' \ + printf 'zfs-mount-generator: (%s) invalid devices\n' \ "${dataset}" >/dev/kmsg fi @@ -129,7 +129,7 @@ process_line() { elif [ "${p_exec}" = off ] ; then opts="${opts},noexec" else - printf 'zfs-mount-generator.sh: (%s) invalid exec\n' \ + printf 'zfs-mount-generator: (%s) invalid exec\n' \ "${dataset}" >/dev/kmsg fi @@ -139,7 +139,7 @@ process_line() { elif [ "${p_readonly}" = off ] ; then opts="${opts},rw" else - printf 'zfs-mount-generator.sh: (%s) invalid readonly\n' \ + printf 'zfs-mount-generator: (%s) invalid readonly\n' \ "${dataset}" >/dev/kmsg fi @@ -149,7 +149,7 @@ process_line() { elif [ "${p_setuid}" = off ] ; then opts="${opts},nosuid" else - printf 'zfs-mount-generator.sh: (%s) invalid setuid\n' \ + printf 'zfs-mount-generator: (%s) invalid setuid\n' \ "${dataset}" >/dev/kmsg fi @@ -159,13 +159,13 @@ process_line() { elif [ "${p_nbmand}" = off ] ; then opts="${opts},nomand" else - printf 'zfs-mount-generator.sh: (%s) invalid nbmand\n' \ + printf 'zfs-mount-generator: (%s) invalid nbmand\n' \ "${dataset}" >/dev/kmsg fi # If the mountpoint has already been created, give it precedence. if [ -e "${dest_norm}/${mountfile}" ] ; then - printf 'zfs-mount-generator.sh: %s already exists\n' "${mountfile}" \ + printf 'zfs-mount-generator: %s already exists\n' "${mountfile}" \ >/dev/kmsg return fi diff --git a/man/man8/zfs.8 b/man/man8/zfs.8 index db09028b2..db5c3f3e2 100644 --- a/man/man8/zfs.8 +++ b/man/man8/zfs.8 @@ -1444,9 +1444,9 @@ Controls where the user's encryption key will be loaded from by default for commands such as .Nm zfs Cm load-key and -.Nm zfs Cm mount Cm -l . This property is -only set for encrypted datasets which are encryption roots. If unspecified, the -default is +.Nm zfs Cm mount Cm -l . +This property is only set for encrypted datasets which are encryption roots. If +unspecified, the default is .Sy prompt. .Pp Even though the encryption suite cannot be changed after dataset creation, the @@ -2799,9 +2799,8 @@ property is .Po the default is .Sy off .Pc . -The following fields are displayed, -.Sy name Ns \&, Ns Sy used Ns \&, Ns Sy available Ns \&, Ns Sy referenced Ns \&, Ns -.Sy mountpoint . +The following fields are displayed: +.Sy name Ns \&, Sy used Ns \&, Sy available Ns \&, Sy referenced Ns \&, Sy mountpoint Ns . .Bl -tag -width "-H" .It Fl H Used for scripting mode. diff --git a/tests/zfs-tests/tests/perf/regression/random_writes_zil.ksh b/tests/zfs-tests/tests/perf/regression/random_writes_zil.ksh index 4f2a49681..022021daa 100755 --- a/tests/zfs-tests/tests/perf/regression/random_writes_zil.ksh +++ b/tests/zfs-tests/tests/perf/regression/random_writes_zil.ksh @@ -1,4 +1,4 @@ -#!/usr/bin/ksh +#!/bin/ksh # # This file and its contents are supplied under the terms of the |