diff options
author | Giuseppe Di Natale <[email protected]> | 2017-06-05 13:52:15 -0400 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-06-05 10:52:15 -0700 |
commit | 099700d9dff46309cdd16f4c4331daddb70d8570 (patch) | |
tree | 13383ee2af7cc69b0f790b3c3f70fbc61ae074fb /zfs-script-config.sh.in | |
parent | 92aceb2a7ee8c9367fdc901fed933f6f258173e0 (diff) |
zpool iostat/status -c improvements
Users can now provide their own scripts to be run
with 'zpool iostat/status -c'. User scripts should be
placed in ~/.zpool.d to be included in zpool's
default search path.
Provide a script which can be used with
'zpool iostat|status -c' that will return the type of
device (hdd, sdd, file).
Provide a script to get various values from smartctl
when using 'zpool iostat/status -c'.
Allow users to define the ZPOOL_SCRIPTS_PATH
environment variable which can be used to override
the default 'zpool iostat/status -c' search path.
Allow the ZPOOL_SCRIPTS_ENABLED environment
variable to enable or disable 'zpool status/iostat -c'
functionality.
Use the new smart script to provide the serial command.
Install /etc/sudoers.d/zfs file which contains the sudoer
rule for smartctl as a sample.
Allow 'zpool iostat/status -c' tests to run in tree.
Reviewed-by: Tony Hutter <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Giuseppe Di Natale <[email protected]>
Closes #6121
Closes #6153
Diffstat (limited to 'zfs-script-config.sh.in')
-rw-r--r-- | zfs-script-config.sh.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/zfs-script-config.sh.in b/zfs-script-config.sh.in index 593b4d00e..f1006b3f7 100644 --- a/zfs-script-config.sh.in +++ b/zfs-script-config.sh.in @@ -24,6 +24,7 @@ export UDEVRULEDIR=${BUILDDIR}/udev/rules.d export ZEDLET_ETC_DIR=${SRCDIR}/cmd/zed/zed.d export ZEDLET_LIBEXEC_DIR=${SRCDIR}/cmd/zed/zed.d export ZPOOL_SCRIPT_DIR=${SRCDIR}/cmd/zpool/zpool.d +export ZPOOL_SCRIPTS_PATH=${SRCDIR}/cmd/zpool/zpool.d export ZDB=${CMDDIR}/zdb/zdb export ZFS=${CMDDIR}/zfs/zfs |