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

DEVICES="/dev/ram0"

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

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