summaryrefslogtreecommitdiffstats
path: root/scripts/zpool-config/sda-raid0.sh
blob: 48dc96d2783abfc4015bc2b04100359816b1f5ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
#
# Single disk /dev/sda Raid-0 Configuration
#

DEVICES="/dev/sda"

zpool_create() {
	msg ${ZPOOL} create ${ZPOOL_FLAGS} ${ZPOOL_NAME} ${DEVICES}
	${ZPOOL} create ${ZPOOL_FLAGS} ${ZPOOL_NAME} ${DEVICES} || exit 1
}

zpool_destroy() {
	msg ${ZPOOL} destroy ${ZPOOL_NAME}
	${ZPOOL} destroy ${ZPOOL_NAME} || exit 1
}