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

17 lines
303 B
Bash

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