mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-27 03:19:35 +03:00
22 lines
488 B
Bash
22 lines
488 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# Supermicro (White Box) Raid-10 Configuration (8x2(1+1))
|
||
|
#
|
||
|
|
||
|
RANKS=4
|
||
|
CHANNELS=4
|
||
|
|
||
|
zpool_create() {
|
||
|
udev_setup ${ETCDIR}/zfs/zdev.conf.supermicro.example
|
||
|
udev_raid10_setup ${RANKS} ${CHANNELS}
|
||
|
|
||
|
msg ${ZPOOL} create ${FORCE_FLAG} ${ZPOOL_NAME} ${RAID10S[*]}
|
||
|
${ZPOOL} create ${FORCE_FLAG} ${ZPOOL_NAME} ${RAID10S[*]} || exit 1
|
||
|
}
|
||
|
|
||
|
zpool_destroy() {
|
||
|
msg ${ZPOOL} destroy ${ZPOOL_NAME}
|
||
|
${ZPOOL} destroy ${ZPOOL_NAME}
|
||
|
udev_cleanup ${ETCDIR}/zfs/zdev.conf.supermicro.example
|
||
|
}
|