diff options
author | Brian Behlendorf <behlendorf1@llnl.gov> | 2020-12-11 11:00:58 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-11 11:00:58 -0800 |
commit | 1ad07b01bca915c9db2c856121d616baf01a088b (patch) | |
tree | d854eb9df64c7ebf644d3d31de9ad6dceaf332a9 /scripts | |
parent | 695ac5850b8ba9792c038e26051a4991a0d6de8d (diff) |
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 <mail@gmelikov.ru>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #11326
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/zfs-helpers.sh | 3 |
1 files changed, 0 insertions, 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" |