]> git.proxmox.com Git - mirror_zfs-debian.git/blob - scripts/zpool-config/x4550-raidz2-8x6.sh
Add FAILFAST support
[mirror_zfs-debian.git] / scripts / zpool-config / x4550-raidz2-8x6.sh
1 #!/bin/bash
2 #
3 # Sun Fire x4550 (Thumper/Thor) Raid-Z Configuration (8x6(4+2))
4 #
5
6 RANKS=8
7 CHANNELS=6
8
9 zpool_create() {
10 udev_setup ${ETCDIR}/zfs/zdev.conf.x4550.example
11 udev_raidz2_setup ${RANKS} ${CHANNELS}
12
13 msg ${ZPOOL} create ${FORCE_FLAG} ${ZPOOL_NAME} ${RAIDZ2S[*]}
14 ${ZPOOL} create ${FORCE_FLAG} ${ZPOOL_NAME} ${RAIDZ2S[*]} || exit 1
15 }
16
17 zpool_destroy() {
18 msg ${ZPOOL} destroy ${ZPOOL_NAME}
19 ${ZPOOL} destroy ${ZPOOL_NAME}
20 udev_cleanup ${ETCDIR}/zfs/zdev.conf.x4550.example
21 }