zfs/scripts/zpool-config/hda-raid0.sh

17 lines
359 B
Bash
Raw Normal View History

#!/bin/bash
#
# Single disk /dev/hda Raid-0 Configuration
#
DEVICES="/dev/hda"
zpool_create() {
msg "${CMDDIR}/zpool/zpool create -f ${ZPOOL_NAME} ${DEVICES}"
${CMDDIR}/zpool/zpool create -f ${ZPOOL_NAME} ${DEVICES} || exit 1
}
zpool_destroy() {
msg "${CMDDIR}/zpool/zpool destroy ${ZPOOL_NAME}"
${CMDDIR}/zpool/zpool destroy ${ZPOOL_NAME} || exit 1
}