From 1ad07b01bca915c9db2c856121d616baf01a088b Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Fri, 11 Dec 2020 11:00:58 -0800 Subject: [PATCH] Remove draid.d symlink from zfs_helpers.sh In an earlier revision of dRAID there existed an /etc/zfs/draid.d directory. This was removed before the final version was integrated but a little bit was accidentally overlooked in the zfs_helpers.sh script. Remove this remnant. Reviewed-by: George Melikov Signed-off-by: Brian Behlendorf Closes #11326 --- scripts/zfs-helpers.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/zfs-helpers.sh b/scripts/zfs-helpers.sh index f4edd48e8..02b492200 100755 --- a/scripts/zfs-helpers.sh +++ b/scripts/zfs-helpers.sh @@ -166,8 +166,6 @@ if [ "${INSTALL}" = "yes" ]; then "$INSTALL_UDEV_RULE_DIR/90-zfs.rules" install "$CMD_DIR/zpool/zpool.d" \ "$INSTALL_SYSCONF_DIR/zfs/zpool.d" - install "$SYSCONF_DIR/zfs/draid.d" \ - "$INSTALL_SYSCONF_DIR/zfs/draid.d" install "$CONTRIB_DIR/pyzfs/libzfs_core" \ "$INSTALL_PYTHON_DIR/libzfs_core" # Ideally we would install these in the configured ${libdir}, which is @@ -187,7 +185,6 @@ else remove "$INSTALL_UDEV_RULE_DIR/69-vdev.rules" remove "$INSTALL_UDEV_RULE_DIR/90-zfs.rules" remove "$INSTALL_SYSCONF_DIR/zfs/zpool.d" - remove "$INSTALL_SYSCONF_DIR/zfs/draid.d" remove "$INSTALL_PYTHON_DIR/libzfs_core" remove "/lib/libzfs_core.so" remove "/lib/libnvpair.so"