diff options
Diffstat (limited to 'scripts/zpool-config/dragon-raidz2-7x10.sh')
-rw-r--r-- | scripts/zpool-config/dragon-raidz2-7x10.sh | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/scripts/zpool-config/dragon-raidz2-7x10.sh b/scripts/zpool-config/dragon-raidz2-7x10.sh deleted file mode 100644 index 0dd07a19b..000000000 --- a/scripts/zpool-config/dragon-raidz2-7x10.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash -# -# Dragon (White Box) Raid-Z2 Configuration (7x10(8+2)) -# - -RANKS=7 -CHANNELS=10 - -zpool_create() { - udev_setup ${ETCDIR}/zfs/zdev.conf.dragon.example - udev_raidz2_setup ${RANKS} ${CHANNELS} - - msg ${ZPOOL} create ${FORCE_FLAG} ${ZPOOL_NAME} ${RAIDZ2S[*]} - ${ZPOOL} create ${FORCE_FLAG} ${ZPOOL_NAME} ${RAIDZ2S[*]} || exit 1 -} - -zpool_destroy() { - msg ${ZPOOL} destroy ${ZPOOL_NAME} - ${ZPOOL} destroy ${ZPOOL_NAME} - udev_cleanup ${ETCDIR}/zfs/zdev.conf.dragon.example -} |