Make rollbacks fail gracefully
[zfs.git] / scripts / zpool-config / supermicro-raidz-4x4.sh
1 #!/bin/bash
2 #
3 # Supermicro (White Box) Raid-Z Configuration (4x4(3+1))
4 #
5
6 RANKS=4
7 CHANNELS=4
8
9 zpool_create() {
10         udev_setup ${ETCDIR}/zfs/zdev.conf.supermicro.example
11         udev_raidz_setup ${RANKS} ${CHANNELS}
12
13         msg ${ZPOOL} create ${FORCE_FLAG} ${ZPOOL_NAME} ${RAIDZS[*]}
14         ${ZPOOL} create ${FORCE_FLAG} ${ZPOOL_NAME} ${RAIDZS[*]} || 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.supermicro.example
21 }