1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-04 11:23:46 +00:00

- Update to 2019050600

- Sync with latest ZoL upstream, including new TRIM support.
- Add option to enable PYTHON support for some extra ZFS tools
- Cleanup plist
This commit is contained in:
Kris Moore 2019-05-07 16:20:57 +00:00
parent 78d38057b8
commit 2e8a7359e0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=500970
5 changed files with 133 additions and 31 deletions

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= zol
PORTVERSION= 2019041800
PORTVERSION= 2019050600
DISTVERSIONPREFIX= v
CATEGORIES= sysutils
PKGNAMESUFFIX= -kmod
@ -15,7 +15,7 @@ USES= kmod
USE_GITHUB= yes
GH_ACCOUNT= zfsonfreebsd
GH_PROJECT= ZoF
GH_TAGNAME= e585f57
GH_TAGNAME= 52a3f3c
PLIST_FILES= ${KMODDIR}/zfs.ko

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1555593532
SHA256 (zfsonfreebsd-ZoF-v2019041800-e585f57_GH0.tar.gz) = d7bef50a341c66299d35ac622ce8db3b2fafc33b368b3012bcba05f83b9a6408
SIZE (zfsonfreebsd-ZoF-v2019041800-e585f57_GH0.tar.gz) = 6450009
TIMESTAMP = 1557193056
SHA256 (zfsonfreebsd-ZoF-v2019050600-52a3f3c_GH0.tar.gz) = 4159cd4f869f835b628a2896e0acd7fe0415dc1b062443f3d6c5cb65e3f896ac
SIZE (zfsonfreebsd-ZoF-v2019050600-52a3f3c_GH0.tar.gz) = 6741091

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= zol
PORTVERSION= 2019041800
PORTVERSION= 2019050600
DISTVERSIONPREFIX= v
CATEGORIES= sysutils
@ -14,18 +14,18 @@ BROKEN_aarch64= invokes x86 assembler
RUN_DEPENDS= zol-kmod>=0:sysutils/zol-kmod
USES= autoreconf:build libtool gmake gettext-runtime:run
USES+= autoreconf:build libtool gmake gettext-runtime:run python:3.3+,build shebangfix
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --prefix=${PREFIX} --with-config="user"
OPTIONS_DEFINE= DEBUG
OPTIONS_DEFINE= DEBUG PYTHON
OPTIONS_SUB= yes
USE_GITHUB= yes
GH_ACCOUNT= zfsonfreebsd
GH_PROJECT= ZoF
GH_TAGNAME= e585f57
GH_TAGNAME= 52a3f3c
.include <bsd.port.pre.mk>
@ -37,7 +37,20 @@ IGNORE= needs FreeBSD 12/13 with AES-CCM support
CONFIGURE_ARGS+= --enable-debug --enable-debuginfo
.endif
.if ${PORT_OPTIONS:MPYTHON}
CONFIGURE_ARGS+= --with-python=${PYTHON_VER}
BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}cffi>0:devel/py-cffi@${PY_FLAVOR}
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}cffi>0:devel/py-cffi@${PY_FLAVOR}
PLIST_SUB+= PYTHON=""
.else
CONFIGURE_ARGS+= --without-python --disable-pyzfs
PLIST_SUB+= PYTHON="@comment "
.endif
pre-configure:
cd ${WRKSRC} && ./autogen.sh
post-stage:
${RM} -rf ${STAGEDIR}/usr/lib
.include <bsd.port.post.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1555593518
SHA256 (zfsonfreebsd-ZoF-v2019041800-e585f57_GH0.tar.gz) = d7bef50a341c66299d35ac622ce8db3b2fafc33b368b3012bcba05f83b9a6408
SIZE (zfsonfreebsd-ZoF-v2019041800-e585f57_GH0.tar.gz) = 6450009
TIMESTAMP = 1557191491
SHA256 (zfsonfreebsd-ZoF-v2019050600-52a3f3c_GH0.tar.gz) = 4159cd4f869f835b628a2896e0acd7fe0415dc1b062443f3d6c5cb65e3f896ac
SIZE (zfsonfreebsd-ZoF-v2019050600-52a3f3c_GH0.tar.gz) = 6741091

View File

@ -1,17 +1,7 @@
/etc/default/zfs
/usr/lib/dracut/modules.d/02zfsexpandknowledge/module-setup.sh
/usr/lib/dracut/modules.d/90zfs/export-zfs.sh
/usr/lib/dracut/modules.d/90zfs/module-setup.sh
/usr/lib/dracut/modules.d/90zfs/mount-zfs.sh
/usr/lib/dracut/modules.d/90zfs/parse-zfs.sh
/usr/lib/dracut/modules.d/90zfs/zfs-generator.sh
/usr/lib/dracut/modules.d/90zfs/zfs-lib.sh
/usr/lib/dracut/modules.d/90zfs/zfs-load-key.sh
/usr/lib/dracut/modules.d/90zfs/zfs-needshutdown.sh
bin/arc_summary.py
bin/arc_summary3.py
bin/arcstat.py
bin/dbufstat.py
%%PYTHON%%bin/arc_summary
%%PYTHON%%bin/arcstat
%%PYTHON%%bin/dbufstat
bin/raidz_test
bin/zgenhostid
etc/init.d/zfs-import
@ -253,9 +243,11 @@ include/libzfs/sys/vdev_file.h
include/libzfs/sys/vdev_impl.h
include/libzfs/sys/vdev_indirect_births.h
include/libzfs/sys/vdev_indirect_mapping.h
include/libzfs/sys/vdev_initialize.h
include/libzfs/sys/vdev_raidz.h
include/libzfs/sys/vdev_raidz_impl.h
include/libzfs/sys/vdev_removal.h
include/libzfs/sys/vdev_trim.h
include/libzfs/sys/xvattr.h
include/libzfs/sys/zap.h
include/libzfs/sys/zap_impl.h
@ -314,6 +306,38 @@ lib/libzpool.a
lib/libzpool.so
lib/libzpool.so.2
lib/libzpool.so.2.0.0
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/__init__.py
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/__pycache__/_constants.cpython-%%PYTHON_SUFFIX%%.pyc
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/__pycache__/_error_translation.cpython-%%PYTHON_SUFFIX%%.pyc
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/__pycache__/_libzfs_core.cpython-%%PYTHON_SUFFIX%%.pyc
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/__pycache__/_nvlist.cpython-%%PYTHON_SUFFIX%%.pyc
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/__pycache__/ctypes.cpython-%%PYTHON_SUFFIX%%.pyc
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/__pycache__/exceptions.cpython-%%PYTHON_SUFFIX%%.pyc
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/_constants.py
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/_error_translation.py
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/_libzfs_core.py
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/_nvlist.py
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/bindings/__init__.py
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/bindings/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/bindings/__pycache__/libnvpair.cpython-%%PYTHON_SUFFIX%%.pyc
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/bindings/__pycache__/libzfs_core.cpython-%%PYTHON_SUFFIX%%.pyc
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/bindings/libnvpair.py
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/bindings/libzfs_core.py
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/ctypes.py
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/exceptions.py
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/test/__init__.py
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/test/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/test/__pycache__/test_libzfs_core.cpython-%%PYTHON_SUFFIX%%.pyc
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/test/__pycache__/test_nvlist.cpython-%%PYTHON_SUFFIX%%.pyc
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/test/test_libzfs_core.py
%%PYTHON%%%%PYTHON_SITELIBDIR%%/libzfs_core/test/test_nvlist.py
%%PYTHON%%%%PYTHON_SITELIBDIR%%/pyzfs-0.8.0-py%%PYTHON_VER%%.egg-info/PKG-INFO
%%PYTHON%%%%PYTHON_SITELIBDIR%%/pyzfs-0.8.0-py%%PYTHON_VER%%.egg-info/SOURCES.txt
%%PYTHON%%%%PYTHON_SITELIBDIR%%/pyzfs-0.8.0-py%%PYTHON_VER%%.egg-info/dependency_links.txt
%%PYTHON%%%%PYTHON_SITELIBDIR%%/pyzfs-0.8.0-py%%PYTHON_VER%%.egg-info/not-zip-safe
%%PYTHON%%%%PYTHON_SITELIBDIR%%/pyzfs-0.8.0-py%%PYTHON_VER%%.egg-info/requires.txt
%%PYTHON%%%%PYTHON_SITELIBDIR%%/pyzfs-0.8.0-py%%PYTHON_VER%%.egg-info/top_level.txt
libexec/zfs/zpool.d/ata_err
libexec/zfs/zpool.d/cmd_to
libexec/zfs/zpool.d/defect
@ -1047,6 +1071,7 @@ share/zfs/zfs-tests/tests/functional/cli_root/zpool_events/zpool_events.cfg
share/zfs/zfs-tests/tests/functional/cli_root/zpool_events/zpool_events.kshlib
share/zfs/zfs-tests/tests/functional/cli_root/zpool_events/zpool_events_clear.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_events/zpool_events_cliargs.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_events/zpool_events_errors.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_events/zpool_events_follow.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_events/zpool_events_poolname.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_expand/cleanup.ksh
@ -1076,6 +1101,7 @@ share/zfs/zfs-tests/tests/functional/cli_root/zpool_history/setup.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_history/zpool_history_001_neg.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_history/zpool_history_002_pos.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_import/blockfiles/cryptv0.dat.bz2
share/zfs/zfs-tests/tests/functional/cli_root/zpool_import/blockfiles/missing_ivset.dat.bz2
share/zfs/zfs-tests/tests/functional/cli_root/zpool_import/blockfiles/unclean_export.dat.bz2
share/zfs/zfs-tests/tests/functional/cli_root/zpool_import/cleanup.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_import/import_cachefile_device_added.ksh
@ -1110,6 +1136,7 @@ share/zfs/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_all_001_
share/zfs/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_encrypted.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_encrypted_load.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_errata3.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_errata4.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_features_001_pos.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_features_002_neg.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_features_003_pos.ksh
@ -1117,9 +1144,24 @@ share/zfs/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_missing_
share/zfs/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_missing_002_pos.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_missing_003_pos.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_rename_001_pos.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_initialize/cleanup.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize.kshlib
share/zfs/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_attach_detach_add_remove.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_import_export.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_offline_export_import_online.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_online_offline.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_split.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_start_and_cancel_neg.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_start_and_cancel_pos.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_suspend_resume.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_unsupported_vdevs.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_verify_checksums.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_verify_initialized.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_labelclear/labelclear.cfg
share/zfs/zfs-tests/tests/functional/cli_root/zpool_labelclear/zpool_labelclear_active.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_labelclear/zpool_labelclear_exported.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_labelclear/zpool_labelclear_removed.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_labelclear/zpool_labelclear_valid.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_offline/cleanup.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_offline/setup.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_offline/zpool_offline_001_pos.ksh
@ -1165,6 +1207,7 @@ share/zfs/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_003_pos.ks
share/zfs/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_004_pos.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_005_pos.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_encrypted_unloaded.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_multiple_copies.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_offline_device.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_print_repairing.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_set/cleanup.ksh
@ -1196,6 +1239,26 @@ share/zfs/zfs-tests/tests/functional/cli_root/zpool_sync/cleanup.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_sync/setup.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_sync/zpool_sync_001_pos.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_sync/zpool_sync_002_neg.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/cleanup.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/setup.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim.kshlib
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_attach_detach_add_remove.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_import_export.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_multiple.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_neg.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_offline_export_import_online.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_online_offline.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_partial.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_rate.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_rate_neg.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_secure.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_split.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_start_and_cancel_neg.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_start_and_cancel_pos.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_suspend_resume.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_unsupported_vdevs.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_verify_checksums.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_verify_trimmed.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-broken-mirror1.dat.bz2
share/zfs/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-broken-mirror2.dat.bz2
share/zfs/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v1.dat.bz2
@ -1261,7 +1324,6 @@ share/zfs/zfs-tests/tests/functional/cli_root/zpool_upgrade/zpool_upgrade_006_ne
share/zfs/zfs-tests/tests/functional/cli_root/zpool_upgrade/zpool_upgrade_007_pos.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_upgrade/zpool_upgrade_008_pos.ksh
share/zfs/zfs-tests/tests/functional/cli_root/zpool_upgrade/zpool_upgrade_009_neg.ksh
share/zfs/zfs-tests/tests/functional/cli_user/misc/arc_summary3_001_pos.ksh
share/zfs/zfs-tests/tests/functional/cli_user/misc/arc_summary_001_pos.ksh
share/zfs/zfs-tests/tests/functional/cli_user/misc/arc_summary_002_neg.ksh
share/zfs/zfs-tests/tests/functional/cli_user/misc/arcstat_001_pos.ksh
@ -1445,6 +1507,10 @@ share/zfs/zfs-tests/tests/functional/history/setup.ksh
share/zfs/zfs-tests/tests/functional/history/sparc.migratedpool.DAT.Z
share/zfs/zfs-tests/tests/functional/history/sparc.orig_history.txt
share/zfs/zfs-tests/tests/functional/history/zfs-pool-v4.dat.Z
share/zfs/zfs-tests/tests/functional/hkdf/cleanup.ksh
share/zfs/zfs-tests/tests/functional/hkdf/hkdf_test
share/zfs/zfs-tests/tests/functional/hkdf/run_hkdf_test.ksh
share/zfs/zfs-tests/tests/functional/hkdf/setup.ksh
share/zfs/zfs-tests/tests/functional/inheritance/cleanup.ksh
share/zfs/zfs-tests/tests/functional/inheritance/config001.cfg
share/zfs/zfs-tests/tests/functional/inheritance/config002.cfg
@ -1524,6 +1590,12 @@ share/zfs/zfs-tests/tests/functional/libzfs/cleanup.ksh
share/zfs/zfs-tests/tests/functional/libzfs/libzfs_input.ksh
share/zfs/zfs-tests/tests/functional/libzfs/many_fds
share/zfs/zfs-tests/tests/functional/libzfs/setup.ksh
share/zfs/zfs-tests/tests/functional/limits/cleanup.ksh
share/zfs/zfs-tests/tests/functional/limits/filesystem_count.ksh
share/zfs/zfs-tests/tests/functional/limits/filesystem_limit.ksh
share/zfs/zfs-tests/tests/functional/limits/setup.ksh
share/zfs/zfs-tests/tests/functional/limits/snapshot_count.ksh
share/zfs/zfs-tests/tests/functional/limits/snapshot_limit.ksh
share/zfs/zfs-tests/tests/functional/link_count/cleanup.ksh
share/zfs/zfs-tests/tests/functional/link_count/link_count_001.ksh
share/zfs/zfs-tests/tests/functional/link_count/setup.ksh
@ -1561,12 +1633,14 @@ share/zfs/zfs-tests/tests/functional/mmp/mmp_on_thread.ksh
share/zfs/zfs-tests/tests/functional/mmp/mmp_on_uberblocks.ksh
share/zfs/zfs-tests/tests/functional/mmp/mmp_on_zdb.ksh
share/zfs/zfs-tests/tests/functional/mmp/mmp_reset_interval.ksh
share/zfs/zfs-tests/tests/functional/mmp/mmp_write_distribution.ksh
share/zfs/zfs-tests/tests/functional/mmp/mmp_write_uberblocks.ksh
share/zfs/zfs-tests/tests/functional/mmp/multihost_history.ksh
share/zfs/zfs-tests/tests/functional/mmp/setup.ksh
share/zfs/zfs-tests/tests/functional/mount/cleanup.ksh
share/zfs/zfs-tests/tests/functional/mount/setup.ksh
share/zfs/zfs-tests/tests/functional/mount/umount_001.ksh
share/zfs/zfs-tests/tests/functional/mount/umount_unlinked_drain.ksh
share/zfs/zfs-tests/tests/functional/mount/umountall_001.ksh
share/zfs/zfs-tests/tests/functional/mv_files/cleanup.ksh
share/zfs/zfs-tests/tests/functional/mv_files/mv_files.cfg
@ -1583,6 +1657,7 @@ share/zfs/zfs-tests/tests/functional/no_space/enospc.cfg
share/zfs/zfs-tests/tests/functional/no_space/enospc_001_pos.ksh
share/zfs/zfs-tests/tests/functional/no_space/enospc_002_pos.ksh
share/zfs/zfs-tests/tests/functional/no_space/enospc_003_pos.ksh
share/zfs/zfs-tests/tests/functional/no_space/enospc_df.ksh
share/zfs/zfs-tests/tests/functional/no_space/setup.ksh
share/zfs/zfs-tests/tests/functional/nopwrite/cleanup.ksh
share/zfs/zfs-tests/tests/functional/nopwrite/nopwrite.shlib
@ -1810,11 +1885,16 @@ share/zfs/zfs-tests/tests/functional/rsend/send-c_zstreamdump.ksh
share/zfs/zfs-tests/tests/functional/rsend/send-cpL_varied_recsize.ksh
share/zfs/zfs-tests/tests/functional/rsend/send-wDR_encrypted_zvol.ksh
share/zfs/zfs-tests/tests/functional/rsend/send_encrypted_files.ksh
share/zfs/zfs-tests/tests/functional/rsend/send_encrypted_heirarchy.ksh
share/zfs/zfs-tests/tests/functional/rsend/send_encrypted_hierarchy.ksh
share/zfs/zfs-tests/tests/functional/rsend/send_encrypted_props.ksh
share/zfs/zfs-tests/tests/functional/rsend/send_encrypted_truncated_files.ksh
share/zfs/zfs-tests/tests/functional/rsend/send_freeobjects.ksh
share/zfs/zfs-tests/tests/functional/rsend/send_holds.ksh
share/zfs/zfs-tests/tests/functional/rsend/send_hole_birth.ksh
share/zfs/zfs-tests/tests/functional/rsend/send_mixed_raw.ksh
share/zfs/zfs-tests/tests/functional/rsend/send_realloc_dnode_size.ksh
share/zfs/zfs-tests/tests/functional/rsend/send_realloc_encrypted_files.ksh
share/zfs/zfs-tests/tests/functional/rsend/send_realloc_files.ksh
share/zfs/zfs-tests/tests/functional/rsend/setup.ksh
share/zfs/zfs-tests/tests/functional/scrub_mirror/cleanup.ksh
share/zfs/zfs-tests/tests/functional/scrub_mirror/default.cfg
@ -1884,6 +1964,15 @@ share/zfs/zfs-tests/tests/functional/sparse/sparse_001_pos.ksh
share/zfs/zfs-tests/tests/functional/threadsappend/cleanup.ksh
share/zfs/zfs-tests/tests/functional/threadsappend/setup.ksh
share/zfs/zfs-tests/tests/functional/threadsappend/threadsappend_001_pos.ksh
share/zfs/zfs-tests/tests/functional/trim/autotrim_config.ksh
share/zfs/zfs-tests/tests/functional/trim/autotrim_integrity.ksh
share/zfs/zfs-tests/tests/functional/trim/autotrim_trim_integrity.ksh
share/zfs/zfs-tests/tests/functional/trim/cleanup.ksh
share/zfs/zfs-tests/tests/functional/trim/setup.ksh
share/zfs/zfs-tests/tests/functional/trim/trim.cfg
share/zfs/zfs-tests/tests/functional/trim/trim.kshlib
share/zfs/zfs-tests/tests/functional/trim/trim_config.ksh
share/zfs/zfs-tests/tests/functional/trim/trim_integrity.ksh
share/zfs/zfs-tests/tests/functional/truncate/cleanup.ksh
share/zfs/zfs-tests/tests/functional/truncate/setup.ksh
share/zfs/zfs-tests/tests/functional/truncate/truncate.cfg
@ -1895,6 +1984,7 @@ share/zfs/zfs-tests/tests/functional/upgrade/cleanup.ksh
share/zfs/zfs-tests/tests/functional/upgrade/setup.ksh
share/zfs/zfs-tests/tests/functional/upgrade/upgrade_common.kshlib
share/zfs/zfs-tests/tests/functional/upgrade/upgrade_projectquota_001_pos.ksh
share/zfs/zfs-tests/tests/functional/upgrade/upgrade_readonly_pool.ksh
share/zfs/zfs-tests/tests/functional/upgrade/upgrade_userobj_001_pos.ksh
share/zfs/zfs-tests/tests/functional/user_namespace/cleanup.ksh
share/zfs/zfs-tests/tests/functional/user_namespace/setup.ksh
@ -1977,6 +2067,8 @@ share/zfs/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_004_pos.ksh
share/zfs/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_005_neg.ksh
share/zfs/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_006_pos.ksh
share/zfs/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_common.kshlib
share/zfs/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_hierarchy.ksh
share/zfs/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_rename_inuse.ksh
share/zfs/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_snapdev.ksh
share/zfs/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_volmode.ksh
share/zfs/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_zil.ksh
@ -1996,6 +2088,7 @@ share/zfs/zfs-tests/tests/perf/fio/random_readwrite_fixed.fio
share/zfs/zfs-tests/tests/perf/fio/random_writes.fio
share/zfs/zfs-tests/tests/perf/fio/sequential_reads.fio
share/zfs/zfs-tests/tests/perf/fio/sequential_writes.fio
share/zfs/zfs-tests/tests/perf/nfs-sample.cfg
share/zfs/zfs-tests/tests/perf/perf.shlib
share/zfs/zfs-tests/tests/perf/regression/random_reads.ksh
share/zfs/zfs-tests/tests/perf/regression/random_readwrite.ksh
@ -2013,7 +2106,3 @@ share/zfs/zfs.sh
share/zfs/zimport.sh
share/zfs/zloop.sh
@dir /etc/default
@dir /usr/lib/dracut/modules.d/02zfsexpandknowledge
@dir /usr/lib/dracut/modules.d/90zfs
@dir /usr/lib/dracut/modules.d
@dir /usr/lib/dracut