17 lines
333 B
Bash
17 lines
333 B
Bash
#!/bin/bash
|
|
#
|
|
# Single ram disk /dev/ram0 Raid-0 Configuration
|
|
#
|
|
|
|
DEVICES="/dev/ram0"
|
|
|
|
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
|
|
}
|